Home
last modified time | relevance | path

Searched refs:rsGetElementAt (Results 1 – 25 of 40) sorted by relevance

12

/frameworks/rs/script_api/include/
Drs_allocation_data.rsh25 * - Individual cells are accessed using the rsGetElementAt* and
31 * The rsGetElementAt and rsSetElement* functions are somewhat misnamed.
121 * values incrementing other dimensions. Use multiple calls to rsGetElementAt()
1074 * rsGetElementAt: Return a cell from an allocation
1083 * the other returns the actual value, e.g. rsGetElementAt() vs. rsGetElementAt_int4().
1087 rsGetElementAt(rs_allocation a, uint32_t x);
1090 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y);
1093 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t z);
1098 return ((float *)rsGetElementAt(a, x))[0];
1105 return ((float2 *)rsGetElementAt(a, x))[0];
[all …]
/frameworks/rs/tests/java_api/RsTest_16/src/com/android/rs/test/
Dalloc.rs29 const void *p = rsGetElementAt(aRaw, i, j);
38 const void *p = rsGetElementAt(aRaw, i);
47 const void *p = rsGetElementAt(aRaw, i, j, 0);
/frameworks/rs/tests/java_api/RsTest_14/src/com/android/rs/test/
Dalloc.rs29 const void *p = rsGetElementAt(aRaw, i, j);
38 const void *p = rsGetElementAt(aRaw, i);
47 const void *p = rsGetElementAt(aRaw, i, j, 0);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dalloc_supportlib.rs47 const void *p = rsGetElementAt(aRaw, i, j);
56 const void *p = rsGetElementAt(aRaw, i);
65 const void *p = rsGetElementAt(aRaw, i, j, 0);
Dsmall_struct.rs48 small_struct *v = (small_struct *) rsGetElementAt(A, x, y);
56 struct_of_struct *v = (struct_of_struct *) rsGetElementAt(B, x, y);
Dsmall_struct_2.rs48 small_struct_2 *v = (small_struct_2 *) rsGetElementAt(A, x, y);
56 struct_of_struct_2 *v = (struct_of_struct_2 *) rsGetElementAt(B, x, y);
Dalloc.rs47 const void *p = rsGetElementAt(aRaw, i);
Dreflection3264.rs54 uchar4 * e_in = (uchar4*)rsGetElementAt(usr->alloc, x, y);
Dforeach_multi.rs158 struct RetStruct *result = (struct RetStruct*)rsGetElementAt(aout3, i);
Dapitest.rs402 c3.x = *(char*)rsGetElementAt(aChar3, 0);
403 c3.y = *(char*)rsGetElementAt(aChar3, 0, 0);
404 c3.z = *(char*)rsGetElementAt(aChar3, 0, 0, 0);
/frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/
Dalloc_supportlib.rs45 const void *p = rsGetElementAt(aRaw, i, j);
54 const void *p = rsGetElementAt(aRaw, i);
63 const void *p = rsGetElementAt(aRaw, i, j, 0);
Dapitest.rs400 c3.x = *(char*)rsGetElementAt(aChar3, 0);
401 c3.y = *(char*)rsGetElementAt(aChar3, 0, 0);
402 c3.z = *(char*)rsGetElementAt(aChar3, 0, 0, 0);
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dalloc.rs29 const void *p = rsGetElementAt(aRaw, i, j);
38 const void *p = rsGetElementAt(aRaw, i);
47 const void *p = rsGetElementAt(aRaw, i, j, 0);
Dapitest.rs382 c3.x = *(char*)rsGetElementAt(aChar3, 0);
383 c3.y = *(char*)rsGetElementAt(aChar3, 0, 0);
384 c3.z = *(char*)rsGetElementAt(aChar3, 0, 0, 0);
/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/
Dballs.rs59 BallGrid_t *bg = (BallGrid_t *)rsGetElementAt(gGrid, x, y);
70 BallGrid_t *bg = (BallGrid_t *)rsGetElementAt(gGrid, p.x, p.y);
80 BallGrid_t *bg = (BallGrid_t *)rsGetElementAt(gGrid, x, y);
Dball_physics.rs55 … const BallGrid_t *bg = (const BallGrid_t *)rsGetElementAt(gGrid, gridPos[gct].x, gridPos[gct].y);
/frameworks/rs/script_api/
Drs_allocation_data.spec23 <li>Individual cells are accessed using the rsGetElementAt* and
29 The @rsGetElementAt and rsSetElement* functions are somewhat misnamed.
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dsmall_struct.rs46 small_struct *v = (small_struct *) rsGetElementAt(A, x, y);
54 struct_of_struct *v = (struct_of_struct *) rsGetElementAt(B, x, y);
Dsmall_struct_2.rs46 small_struct_2 *v = (small_struct_2 *) rsGetElementAt(A, x, y);
54 struct_of_struct_2 *v = (struct_of_struct_2 *) rsGetElementAt(B, x, y);
Dalloc.rs45 const void *p = rsGetElementAt(aRaw, i);
Dreflection3264.rs52 uchar4 * e_in = (uchar4*)rsGetElementAt(usr->alloc, x, y);
Dforeach_multi.rs156 struct RetStruct *result = (struct RetStruct*)rsGetElementAt(aout3, i);
/frameworks/rs/driver/runtime/
Drs_allocation.c192 rsGetElementAt(rs_allocation a, uint32_t x) { in rsGetElementAt() function
200 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y) { in rsGetElementAt() function
209 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t z) { in rsGetElementAt() function
/frameworks/rs/rsov/driver/
DrsovRuntimeStubs.cpp504 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y, in rsGetElementAt() function
509 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y) { in rsGetElementAt() function
510 return rsGetElementAt(a, x, y, 0); in rsGetElementAt()
513 const void *rsGetElementAt(::rs_allocation a, uint32_t x) { in rsGetElementAt() function
514 return rsGetElementAt(a, x, 0, 0); in rsGetElementAt()
/frameworks/rs/driver/
DrsdRuntimeStubs.cpp531 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y, uint32_t z) { in rsGetElementAt() function
535 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y) { in rsGetElementAt() function
536 return rsGetElementAt(a, x, y ,0); in rsGetElementAt()
539 const void *rsGetElementAt(::rs_allocation a, uint32_t x) { in rsGetElementAt() function
540 return rsGetElementAt(a, x, 0, 0); in rsGetElementAt()

12