/frameworks/rs/script_api/include/ |
D | rs_allocation_data.rsh | 25 * - 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/ |
D | alloc.rs | 29 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/ |
D | alloc.rs | 29 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/ |
D | alloc_supportlib.rs | 47 const void *p = rsGetElementAt(aRaw, i, j); 56 const void *p = rsGetElementAt(aRaw, i); 65 const void *p = rsGetElementAt(aRaw, i, j, 0);
|
D | small_struct.rs | 48 small_struct *v = (small_struct *) rsGetElementAt(A, x, y); 56 struct_of_struct *v = (struct_of_struct *) rsGetElementAt(B, x, y);
|
D | small_struct_2.rs | 48 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);
|
D | alloc.rs | 47 const void *p = rsGetElementAt(aRaw, i);
|
D | reflection3264.rs | 54 uchar4 * e_in = (uchar4*)rsGetElementAt(usr->alloc, x, y);
|
D | foreach_multi.rs | 158 struct RetStruct *result = (struct RetStruct*)rsGetElementAt(aout3, i);
|
D | apitest.rs | 402 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/ |
D | alloc_supportlib.rs | 45 const void *p = rsGetElementAt(aRaw, i, j); 54 const void *p = rsGetElementAt(aRaw, i); 63 const void *p = rsGetElementAt(aRaw, i, j, 0);
|
D | apitest.rs | 400 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/ |
D | alloc.rs | 29 const void *p = rsGetElementAt(aRaw, i, j); 38 const void *p = rsGetElementAt(aRaw, i); 47 const void *p = rsGetElementAt(aRaw, i, j, 0);
|
D | apitest.rs | 382 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/ |
D | balls.rs | 59 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);
|
D | ball_physics.rs | 55 … const BallGrid_t *bg = (const BallGrid_t *)rsGetElementAt(gGrid, gridPos[gct].x, gridPos[gct].y);
|
/frameworks/rs/script_api/ |
D | rs_allocation_data.spec | 23 <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/ |
D | small_struct.rs | 46 small_struct *v = (small_struct *) rsGetElementAt(A, x, y); 54 struct_of_struct *v = (struct_of_struct *) rsGetElementAt(B, x, y);
|
D | small_struct_2.rs | 46 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);
|
D | alloc.rs | 45 const void *p = rsGetElementAt(aRaw, i);
|
D | reflection3264.rs | 52 uchar4 * e_in = (uchar4*)rsGetElementAt(usr->alloc, x, y);
|
D | foreach_multi.rs | 156 struct RetStruct *result = (struct RetStruct*)rsGetElementAt(aout3, i);
|
/frameworks/rs/driver/runtime/ |
D | rs_allocation.c | 192 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/ |
D | rsovRuntimeStubs.cpp | 504 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/ |
D | rsdRuntimeStubs.cpp | 531 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()
|