Searched refs:rsGetElementAt (Results 1 - 12 of 12) sorted by relevance

/frameworks/rs/script_api/
H A Drs_allocation_data.spec23 <li>Individual cells are accessed using the rsGetElementAt* and
29 The @rsGetElementAt and rsSetElement* functions are somewhat misnamed.
112 values incrementing other dimensions. Use multiple calls to rsGetElementAt()
210 function: rsGetElementAt
223 the other returns the actual value, e.g. rsGetElementAt() vs. rsGetElementAt_int4().
228 function: rsGetElementAt
236 function: rsGetElementAt
253 return ((#2#1 *)rsGetElementAt(a, x))[0];
266 return ((#2#1 *)rsGetElementAt(a, x, y))[0];
280 return ((#2#1 *)rsGetElementAt(
[all...]
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A Dsmall_struct.rs46 small_struct *v = (small_struct *) rsGetElementAt(A, x, y);
54 struct_of_struct *v = (struct_of_struct *) rsGetElementAt(B, x, y);
H A 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);
H A Dalloc.rs45 const void *p = rsGetElementAt(aRaw, i);
H A Dreflection3264.rs52 uchar4 * e_in = (uchar4*)rsGetElementAt(usr->alloc, x, y);
H A Dforeach_multi.rs156 struct RetStruct *result = (struct RetStruct*)rsGetElementAt(aout3, i);
/frameworks/rs/script_api/include/
H A 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(
[all...]
/frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/
H A 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);
H A 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/driver/runtime/
H A Drs_allocation.c192 rsGetElementAt(rs_allocation a, uint32_t x) { function
200 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y) { function
209 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t z) { function
/frameworks/rs/rsov/driver/
H A DrsovRuntimeStubs.cpp504 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y, function
509 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y) { function
510 return rsGetElementAt(a, x, y, 0);
513 const void *rsGetElementAt(::rs_allocation a, uint32_t x) { function
514 return rsGetElementAt(a, x, 0, 0);
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp531 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y, uint32_t z) { function
535 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y) { function
536 return rsGetElementAt(a, x, y ,0);
539 const void *rsGetElementAt(::rs_allocation a, uint32_t x) { function
540 return rsGetElementAt(a, x, 0, 0);

Completed in 444 milliseconds