/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 …]
|
D | rs_object_info.rsh | 43 * - In functions like rsGetElementAt(), "element" means the instantiation of the type,
|
/frameworks/rs/tests/java_api/RSTest_CompatLib/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 | 384 c3.x = *(char*)rsGetElementAt(aChar3, 0); 385 c3.y = *(char*)rsGetElementAt(aChar3, 0, 0); 386 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/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/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/RsTest/src/com/android/rs/test/ |
D | small_struct_2.rs | 30 small_struct_2 *v = (small_struct_2 *) rsGetElementAt(A, x, y); 38 struct_of_struct_2 *v = (struct_of_struct_2 *) rsGetElementAt(B, x, y);
|
D | small_struct.rs | 30 small_struct *v = (small_struct *) rsGetElementAt(A, x, y); 38 struct_of_struct *v = (struct_of_struct *) rsGetElementAt(B, x, y);
|
D | alloc.rs | 29 const void *p = rsGetElementAt(aRaw, i);
|
D | foreach_multi.rs | 140 struct RetStruct *result = (struct RetStruct*)rsGetElementAt(aout3, i);
|
/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/runtime/ |
D | rs_allocation.c | 254 rsGetElementAt(rs_allocation a, uint32_t x) { 262 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y) { in rsGetElementAt() function 271 rsGetElementAt(rs_allocation a, uint32_t x, uint32_t y, uint32_t z) { in rsGetElementAt() function
|
/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()
|
/frameworks/compile/slang/tests/P_all_api_13/ |
D | all13.rs | 2918 *(const void**)buf1341 = rsGetElementAt(*(rs_allocation*)buf1342, *(uint32_t*)buf1343); 2919 …*(const void**)buf1344 = rsGetElementAt(*(rs_allocation*)buf1345, *(uint32_t*)buf1346, *(uint32_t*… 2920 …*(const void**)buf1348 = rsGetElementAt(*(rs_allocation*)buf1349, *(uint32_t*)buf1350, *(uint32_t*…
|
/frameworks/compile/slang/tests/P_all_api_11/ |
D | all11.rs | 2918 *(const void**)buf1341 = rsGetElementAt(*(rs_allocation*)buf1342, *(uint32_t*)buf1343); 2919 …*(const void**)buf1344 = rsGetElementAt(*(rs_allocation*)buf1345, *(uint32_t*)buf1346, *(uint32_t*… 2920 …*(const void**)buf1348 = rsGetElementAt(*(rs_allocation*)buf1349, *(uint32_t*)buf1350, *(uint32_t*…
|
/frameworks/compile/slang/tests/P_all_api_16/ |
D | all16.rs | 3108 *(const void**)buf1433 = rsGetElementAt(*(rs_allocation*)buf1434, *(uint32_t*)buf1435); 3109 …*(const void**)buf1436 = rsGetElementAt(*(rs_allocation*)buf1437, *(uint32_t*)buf1438, *(uint32_t*… 3110 …*(const void**)buf1440 = rsGetElementAt(*(rs_allocation*)buf1441, *(uint32_t*)buf1442, *(uint32_t*…
|
/frameworks/compile/slang/tests/P_all_api_12/ |
D | all12.rs | 2918 *(const void**)buf1341 = rsGetElementAt(*(rs_allocation*)buf1342, *(uint32_t*)buf1343); 2919 …*(const void**)buf1344 = rsGetElementAt(*(rs_allocation*)buf1345, *(uint32_t*)buf1346, *(uint32_t*… 2920 …*(const void**)buf1348 = rsGetElementAt(*(rs_allocation*)buf1349, *(uint32_t*)buf1350, *(uint32_t*…
|
/frameworks/compile/slang/tests/P_all_api_14/ |
D | all14.rs | 3004 *(const void**)buf1404 = rsGetElementAt(*(rs_allocation*)buf1405, *(uint32_t*)buf1406); 3005 …*(const void**)buf1407 = rsGetElementAt(*(rs_allocation*)buf1408, *(uint32_t*)buf1409, *(uint32_t*… 3006 …*(const void**)buf1411 = rsGetElementAt(*(rs_allocation*)buf1412, *(uint32_t*)buf1413, *(uint32_t*…
|
/frameworks/compile/slang/tests/P_all_api_15/ |
D | all15.rs | 3004 *(const void**)buf1404 = rsGetElementAt(*(rs_allocation*)buf1405, *(uint32_t*)buf1406); 3005 …*(const void**)buf1407 = rsGetElementAt(*(rs_allocation*)buf1408, *(uint32_t*)buf1409, *(uint32_t*… 3006 …*(const void**)buf1411 = rsGetElementAt(*(rs_allocation*)buf1412, *(uint32_t*)buf1413, *(uint32_t*…
|
/frameworks/compile/slang/tests/P_all_api_17/ |
D | all17.rs | 3268 *(const void**)buf1541 = rsGetElementAt(*(rs_allocation*)buf1542, *(uint32_t*)buf1543); 3269 …*(const void**)buf1544 = rsGetElementAt(*(rs_allocation*)buf1545, *(uint32_t*)buf1546, *(uint32_t*… 3270 …*(const void**)buf1548 = rsGetElementAt(*(rs_allocation*)buf1549, *(uint32_t*)buf1550, *(uint32_t*…
|