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

  /cts/tests/tests/hardware/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/api/
rs_allocation_data.spec 23 <li>Individual cells are accessed using the rsGetElementAt* and
29 The @rsGetElementAt and rsSetElement* functions are somewhat misnamed.
104 values incrementing other dimensions. Use multiple calls to rsGetElementAt()
202 function: rsGetElementAt
215 the other returns the actual value, e.g. rsGetElementAt() vs. rsGetElementAt_int4().
220 function: rsGetElementAt
228 function: rsGetElementAt
245 return ((#2#1 *)rsGetElementAt(a, x))[0];
258 return ((#2#1 *)rsGetElementAt(a, x, y))[0];
272 return ((#2#1 *)rsGetElementAt(a, x, y, z))[0]
    [all...]
  /frameworks/rs/scriptc/
rs_allocation_data.rsh 25 * - Individual cells are accessed using the rsGetElementAt* and
31 * The rsGetElementAt and rsSetElement* functions are somewhat misnamed.
113 * 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.
113 * values incrementing other dimensions. Use multiple calls to rsGetElementAt()
    [all...]
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/scriptc/
rs_allocation.rsh 137 rsGetElementAt(rs_allocation a, uint32_t x);
142 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y);
147 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t z);
162 return ((T *)rsGetElementAt(a, x))[0]; \
166 return ((T *)rsGetElementAt(a, x, y))[0]; \
170 return ((T *)rsGetElementAt(a, x, y, z))[0]; \
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/scriptc/
rs_allocation.rsh 137 rsGetElementAt(rs_allocation a, uint32_t x);
142 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y);
147 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t z);
162 return ((T *)rsGetElementAt(a, x))[0]; \
166 return ((T *)rsGetElementAt(a, x, y))[0]; \
170 return ((T *)rsGetElementAt(a, x, y, z))[0]; \
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/scriptc/
rs_allocation.rsh 137 rsGetElementAt(rs_allocation a, uint32_t x);
142 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y);
147 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t z);
162 return ((T *)rsGetElementAt(a, x))[0]; \
166 return ((T *)rsGetElementAt(a, x, y))[0]; \
170 return ((T *)rsGetElementAt(a, x, y, z))[0]; \
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
kernel_input.rs 184 const small *elem = (const small *) rsGetElementAt(alloc, 0);
201 const big *elem = (const big *) rsGetElementAt(alloc, 0);
  /frameworks/rs/driver/runtime/
rs_allocation.c 190 rsGetElementAt(rs_allocation a, uint32_t x) {
198 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y) {
207 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t z) {
  /frameworks/rs/driver/
rsdRuntimeStubs.cpp 302 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y, uint32_t z) {
306 const void *rsGetElementAt(::rs_allocation a, uint32_t x, uint32_t y) {
307 return rsGetElementAt(a, x, y ,0);
310 const void *rsGetElementAt(::rs_allocation a, uint32_t x) {
311 return rsGetElementAt(a, x, 0, 0);
    [all...]

Completed in 1300 milliseconds