Home
last modified time | relevance | path

Searched refs:rsForEach (Results 1 – 25 of 38) sorted by relevance

12

/frameworks/rs/tests/java_api/SSHealingBrush/src/rs/example/android/com/healingbrush/
Dhealing.rscript113 rsForEach(convert_to_f, in, tmp);
121 rsForEach(copy, in, tmp);
144 rsForEach(copyMasked, mask, dest1);
146 rsForEach(solve1, mask, dest2);
147 rsForEach(solve2, mask, dest1);
150 rsForEach(convert_to_uc, dest1, dest_image);
151 rsForEach(alphaMask, dest_image, dest_image);
Dfind_region.rscript158 rsForEach(toInt, pointsXY, mBorderCoords);
163 rsForEach(extractBorder_ss, mBorderCoords, mBorderValues);
164 rsForEach(toInt_ss, mBorderCoords, mBorderCoords);
175 rsForEach(bordercorrelation_ss, fit);
/frameworks/compile/slang/tests/F_foreach_non_kernel/
Dstderr.txt.expect1 foreach_non_kernel.rscript:14:3: error: rsForEach applied to function oldFoo defined without "kerne…
2 foreach_non_kernel.rscript:15:3: error: rsForEach applied to function foo defined without "kernel" …
Dforeach_non_kernel.rscript14 rsForEach(oldFoo, in, out);
15 rsForEach(foo, in, out);
/frameworks/compile/slang/tests/F_foreach_unexpected_allocs/
Dforeach_unexpected_allocs.rscript10 rsForEach(foo, in);
11 rsForEach(foo, in, in, out);
/frameworks/compile/slang/tests/F_foreach_from_kernel/
Dforeach_from_kernel.rscript13 rsForEach(foo, g_in, g_out);
18 rsForEach(foo, g_in, g_out);
/frameworks/compile/slang/tests/F_foreach_unexpected_kernel_arg/
Dforeach_unexpected_kernel_arg.rscript11 rsForEach(fp, in, out);
12 rsForEach(&foo, in, out);
/frameworks/rs/script_api/
Drs_for_each.spec20 The @rsForEach() function can be used to invoke the root kernel of a script.
77 This structure is used to provide iteration information to a rsForEach call.
92 of this type can be used in a @rsForEach call to launch a kernel.
95 function: rsForEach
128 &nbsp;&nbsp;rsForEach(square, ain, aout);<br/>
134 function: rsForEach
144 function: rsForEach
156 function: rsForEach
167 function: rsForEach
176 function: rsForEach
[all …]
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
Dsingle_source_script.rscript92 rsForEach(foo, in, out);
93 rsForEach(foo, out, out);
102 rsForEach(goo, in, out, out);
Dsingle_source_alloc.rscript36 // using rsForEach is relaxed, make the kernel not return its input.
127 if (vecSize == 1) rsForEach(verify_##CT, gAlloc, gAlloc); \
128 else if (vecSize == 2) rsForEach(verify_##CT##2, gAlloc, gAlloc); \
129 else if (vecSize == 3) rsForEach(verify_##CT##3, gAlloc, gAlloc); \
130 else if (vecSize == 4) rsForEach(verify_##CT##4, gAlloc, gAlloc); \
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
Dsingle_source_script.rscript94 rsForEach(foo, in, out);
95 rsForEach(foo, out, out);
104 rsForEach(goo, in, out, out);
Dsingle_source_alloc.rscript38 // using rsForEach is relaxed, make the kernel not return its input.
129 if (vecSize == 1) rsForEach(verify_##CT, gAlloc, gAlloc); \
130 else if (vecSize == 2) rsForEach(verify_##CT##2, gAlloc, gAlloc); \
131 else if (vecSize == 3) rsForEach(verify_##CT##3, gAlloc, gAlloc); \
132 else if (vecSize == 4) rsForEach(verify_##CT##4, gAlloc, gAlloc); \
/frameworks/rs/script_api/include/
Drs_for_each.rsh22 * The rsForEach() function can be used to invoke the root kernel of a script.
67 * This structure is used to provide iteration information to a rsForEach call.
97 * of this type can be used in a rsForEach call to launch a kernel.
104 * rsForEach: Launches a kernel
129 * rsForEach(square, ain, aout);
145 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData,
151 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData);
156 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData,
162 rsForEach(rs_script script, rs_allocation input, rs_allocation output, const void* usrData,
168 rsForEach(rs_script script, rs_allocation input, rs_allocation output);
[all …]
/frameworks/rs/tests/lldb/java/SingleSource/src/rs/
Drs_single_source.rscript51 rsForEach(kernel_1, out, in1);
56 rsForEach(kernel_2, out, in1, in2);
/frameworks/compile/slang/tests/F_foreach_forward_reference/
Dforeach_forward_reference.rscript6 rsForEach(goo, in, out);
/frameworks/compile/slang/tests/P_foreach_multi/
Dforeach_multi.rscript10 rsForEach(foo, in, in, out);
/frameworks/compile/slang/tests/P_foreach_options/
Dforeach_options.rscript13 rsForEach(foo, in, out);
/frameworks/compile/slang/tests/P_foreach/
Dforeach.rscript14 rsForEach(foo, in, out);
/frameworks/rs/tests/java_api/LatencyBenchmark/src/com/example/android/rs/computebench/
Dcompute_benchmark.rscript28 rsForEach(empty_kern, in, out);
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
Dforeach_bounds.rscript61 rsForEach(s, ain, aout, NULL, 0, &rssc);
Dapitest.rscript1123 rsForEach(scriptNonNull, allocNonNull, allocNonNull, NULL, 0, &sc);
1124 rsForEach(scriptNonNull, allocNonNull, allocNonNull, NULL, 0);
1125 rsForEach(scriptNonNull, allocNonNull, allocNonNull);
/frameworks/rs/tests/java_api/Balls/src/com/example/android/rs/balls/
Dballs.rscript93 rsForEach(physics_script, aNull, aout);
/frameworks/rs/driver/
DrsdRuntimeStubs.cpp734 void __attribute__((overloadable)) rsForEach(::rs_script script, in rsForEach() function
744 void __attribute__((overloadable)) rsForEach(::rs_script script, in rsForEach() function
753 void __attribute__((overloadable)) rsForEach(::rs_script script, in rsForEach() function
763 void __attribute__((overloadable)) rsForEach(::rs_script script, in rsForEach() function
773 void __attribute__((overloadable)) rsForEach(::rs_script script, in rsForEach() function
/frameworks/compile/slang/tests/P_all_api_14/
Dall14.rscript2998rsForEach(*(rs_script*)buf1385, *(rs_allocation*)buf1386, *(rs_allocation*)buf1387, (const void*) …
2999rsForEach(*(rs_script*)buf1391, *(rs_allocation*)buf1392, *(rs_allocation*)buf1393, (const void*) …
3000 rsForEach(*(rs_script*)buf1396, *(rs_allocation*)buf1397, *(rs_allocation*)buf1398);
/frameworks/compile/slang/tests/P_all_api_15/
Dall15.rscript2998rsForEach(*(rs_script*)buf1385, *(rs_allocation*)buf1386, *(rs_allocation*)buf1387, (const void*) …
2999rsForEach(*(rs_script*)buf1391, *(rs_allocation*)buf1392, *(rs_allocation*)buf1393, (const void*) …
3000 rsForEach(*(rs_script*)buf1396, *(rs_allocation*)buf1397, *(rs_allocation*)buf1398);

12