HomeSort by relevance Sort by last modified time
    Searched refs:rsGetElementAt (Results 1 - 17 of 17) sorted by null

  /cts/tests/camera/src/android/hardware/camera2/cts/rs/
raw_converter.rs 52 float4 tl = *((float4 *) rsGetElementAt(gainMap, gX, gY));
53 float4 tr = *((float4 *) rsGetElementAt(gainMap, gXNext, gY));
54 float4 bl = *((float4 *) rsGetElementAt(gainMap, gX, gYNext));
55 float4 br = *((float4 *) rsGetElementAt(gainMap, gXNext, gYNext));
196 outputArray[0] = *((ushort *) rsGetElementAt(buf, x - 1, y - 1));
197 outputArray[1] = *((ushort *) rsGetElementAt(buf, x, y - 1));
198 outputArray[2] = *((ushort *) rsGetElementAt(buf, x + 1, y - 1));
199 outputArray[3] = *((ushort *) rsGetElementAt(buf, x - 1, y));
200 outputArray[4] = *((ushort *) rsGetElementAt(buf, x, y));
201 outputArray[5] = *((ushort *) rsGetElementAt(buf, x + 1, y))
    [all...]
  /frameworks/rs/script_api/
rs_allocation_data.spec 23 <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(a, x, y, z))[0]
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
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);
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);
alloc.rs 45 const void *p = rsGetElementAt(aRaw, i);
reflection3264.rs 52 uchar4 * e_in = (uchar4*)rsGetElementAt(usr->alloc, x, y);
foreach_multi.rs 156 struct RetStruct *result = (struct RetStruct*)rsGetElementAt(aout3, i);
  /frameworks/rs/script_api/include/
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()
    [all...]
  /prebuilts/sdk/renderscript/include/
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()
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/supportlibonlysrc/com/android/rs/unittest/
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);
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);
    [all...]
  /frameworks/rs/tests/lldb/tests/harness/
RS_funs.py     [all...]
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
kernel_input.rs 198 const small *elem = (const small *) rsGetElementAt(alloc, 0);
219 const big *elem = (const big *) rsGetElementAt(alloc, 0);
small_structs.rs 87 (struct char_array_##SIZE *) rsGetElementAt(alloc, i); \
191 (struct two_element_struct_##TAG *) rsGetElementAt(alloc, i); \
  /frameworks/rs/driver/runtime/
rs_allocation.c 192 rsGetElementAt(rs_allocation a, uint32_t x) {
200 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y) {
209 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t z) {
  /frameworks/rs/rsov/driver/
rsovRuntimeStubs.cpp 504 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y,
509 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y) {
510 return rsGetElementAt(a, x, y, 0);
513 const void *rsGetElementAt(::rs_allocation a, uint32_t x) {
514 return rsGetElementAt(a, x, 0, 0);
    [all...]
  /frameworks/rs/driver/
rsdRuntimeStubs.cpp 531 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y, uint32_t z) {
535 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y) {
536 return rsGetElementAt(a, x, y ,0);
539 const void *rsGetElementAt(::rs_allocation a, uint32_t x) {
540 return rsGetElementAt(a, x, 0, 0);
    [all...]

Completed in 3602 milliseconds