/frameworks/rs/cpp/ |
D | Script.cpp | 55 void Script::FieldBase::init(const sp<RS>& rs, uint32_t dimx, uint32_t usages) { in init() argument 56 mAllocation = Allocation::createSized(rs, mElement, dimx, RS_ALLOCATION_USAGE_SCRIPT | usages); in init()
|
D | rsCppStructs.h | 1737 void init(const sp<RS>& rs, uint32_t dimx, uint32_t usages = 0);
|
/frameworks/base/rs/java/android/renderscript/ |
D | Script.java | 497 protected void init(RenderScript rs, int dimx) { in init() argument 498 mAllocation = Allocation.createSized(rs, mElement, dimx, in init() 502 protected void init(RenderScript rs, int dimx, int usages) { in init() argument 504 Allocation.createSized(rs, mElement, dimx, in init()
|
/frameworks/rs/support/java/src/androidx/renderscript/ |
D | Script.java | 538 protected void init(RenderScript rs, int dimx) { in init() argument 539 mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT); in init() 542 protected void init(RenderScript rs, int dimx, int usages) { in init() argument 543 … mAllocation = Allocation.createSized(rs, mElement, dimx, Allocation.USAGE_SCRIPT | usages); in init()
|
/frameworks/rs/tests/java_api/RsNbody/src/com/example/android/rs/nbody_gl/ |
D | nbody.rscript | 57 int dimx = rsAllocationGetDimX(positions); 58 for (int i = 0; i < dimx; i++) {
|
/frameworks/rs/cpu_ref/ |
D | rsCpuIntrinsic3DLUT.cpp | 51 int dimx, int dimy, int dimz);
|
/frameworks/rs/support/jni/ |
D | android_renderscript_RenderScript.cpp | 1016 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces, jint yuv) in nTypeCreate() argument 1019 (RsContext)con, eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate() 1021 return (jlong)(uintptr_t)dispatchTab.TypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, in nTypeCreate() 2193 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces, jint yuv) in nIncTypeCreate() argument 2196 incCon, eid, dimx, dimy, dimz, mips, faces, yuv); in nIncTypeCreate() 2198 return (jlong)(uintptr_t)dispatchTabInc.TypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, in nIncTypeCreate()
|
/frameworks/base/rs/jni/ |
D | android_renderscript_RenderScript.cpp | 1183 jint dimx, jint dimy, jint dimz, jboolean mips, jboolean faces, jint yuv) in nTypeCreate() argument 1187 (RsContext)con, (void*)eid, dimx, dimy, dimz, mips, faces, yuv); in nTypeCreate() 1190 return (jlong)(uintptr_t)rsTypeCreate((RsContext)con, (RsElement)eid, dimx, dimy, dimz, mips, in nTypeCreate()
|