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

/frameworks/rs/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/scriptc/
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/driver/runtime/
H A Drs_allocation.c254 rsGetElementAt(rs_allocation a, uint32_t x) { function
262 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y) { function
271 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t z) { function
/frameworks/rs/driver/
H A DrsdRuntimeStubs.cpp514 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y, uint32_t z) { function
518 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y) { function
519 return rsGetElementAt(a, x, y ,0);
522 const void *rsGetElementAt(::rs_allocation a, uint32_t x) { function
523 return rsGetElementAt(a, x, 0, 0);

Completed in 530 milliseconds