HomeSort by relevance Sort by last modified time
    Searched full:aout (Results 1 - 25 of 310) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
fe_all.rs 4 void test_i8(const char *ain, uchar *aout) {
5 aout[0] = ain[0] + 1;
9 void test_i8_2(const char2 *ain, uchar2 *aout) {
10 aout[0].x = ain[0].x + 1;
11 aout[0].y = ain[0].y + 1;
15 void test_i8_3(const char3 *ain, uchar3 *aout) {
16 aout[0].x = ain[0].x + 1;
17 aout[0].y = ain[0].y + 1;
18 aout[0].z = ain[0].z + 1;
22 void test_i8_4(const char4 *ain, uchar4 *aout) {
    [all...]
scriptgroup.rs 17 void arith(const int *ain, int *aout, uint32_t x) {
24 *aout = *ain + value;
26 *aout = *ain - value;
28 *aout = *ain * value;
30 *aout = *ain / value;
35 void memset(int *aout) {
36 *aout = memset_toValue;
47 void getCompareResult(int* aout) {
48 *aout = compare_failure;
setelementat.rs 16 void memset(int *aout) {
17 *aout = memset_toValue;
29 void getCompareResult(int* aout) {
30 *aout = compare_failure;
  /frameworks/compile/slang/tests/F_root_compute_non_const_usrData/
root_compute_non_const_usrData.rs 4 void root(const int *ain, int *aout, void *usrData) {
stderr.txt.expect 1 root_compute_non_const_usrData.rs:4:44: error: Compute kernel root() can only have one non-const pointer parameter. Parameters 'aout' and 'usrData' are both non-const.
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptIntrinsicBlend.java 48 private void blend(int id, Allocation ain, Allocation aout) {
52 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) {
55 forEach(id, ain, aout, null);
62 * @param aout The destination buffer
64 public void forEachClear(Allocation ain, Allocation aout) {
65 blend(0, ain, aout);
82 * @param aout The destination buffer
84 public void forEachSrc(Allocation ain, Allocation aout) {
85 blend(1, ain, aout);
103 * @param aout The destination buffe
    [all...]
ScriptIntrinsicBlendThunker.java 43 public void forEachClear(Allocation ain, Allocation aout) {
45 AllocationThunker aoutt = (AllocationThunker)aout;
64 public void forEachSrc(Allocation ain, Allocation aout) {
66 AllocationThunker aoutt = (AllocationThunker)aout;
85 public void forEachDst(Allocation ain, Allocation aout) {
87 AllocationThunker aoutt = (AllocationThunker)aout;
106 public void forEachSrcOver(Allocation ain, Allocation aout) {
108 AllocationThunker aoutt = (AllocationThunker)aout;
127 public void forEachDstOver(Allocation ain, Allocation aout) {
129 AllocationThunker aoutt = (AllocationThunker)aout;
    [all...]
  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicBlend.java 43 private void blend(int id, Allocation ain, Allocation aout, Script.LaunchOptions opt) {
47 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) {
50 forEach(id, ain, aout, null, opt);
57 * @param aout The destination buffer
59 public void forEachClear(Allocation ain, Allocation aout) {
60 forEachClear(ain, aout, null);
67 * @param aout The destination buffer
70 public void forEachClear(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
71 blend(0, ain, aout, opt);
88 * @param aout The destination buffe
    [all...]
  /frameworks/compile/slang/tests/P_root_compute_int32_xy/
root_compute_int32_xy.rs 4 void root_old(const int *ain, int *aout, int x, int y) {
5 *aout = *ain + x + y;
  /frameworks/compile/slang/tests/F_root_compute_non_ptr_usrData/
root_compute_non_ptr_usrData.rs 4 void root(const int *ain, int *aout, const int usrData) {
  /frameworks/compile/slang/tests/P_root_compute_non_void_ptr_usrData/
root_compute_non_void_ptr_usrData.rs 4 void root(const int *ain, int *aout, const int *usrData) {
  /frameworks/compile/slang/tests/F_root_compute_really_bad/
root_compute_really_bad.rs 4 int root(int ain, int aout, int usrData, float x1, double y1,
10 void root2(int* ain, const int* aout, int* usrData, const float* x1,
15 root_kernel(int ain, int* aout, int usrData, float x1, double y1,
  /frameworks/compile/slang/tests/F_root_compute_non_uint32_t_xyzar/
root_compute_non_uint32_t_xyzar.rs 4 void root(const int *ain, int *aout, const void *usrData,
  /frameworks/compile/slang/tests/P_root_compute/
root_compute.rs 4 void root(const int *ain, int *aout, const void *usrData,
  /cts/tests/tests/rscpp/librscpptest/
setelementat.rs 15 void memset(int *aout) {
16 *aout = memset_toValue;
28 void getCompareResult(int* aout) {
29 *aout = compare_failure;
  /frameworks/compile/slang/tests/P_compute/
compute.rs 4 void root(const int *ain, int *aout, const void *usrData,
  /frameworks/compile/slang/tests/P_ooo_compute/
ooo_compute.rs 10 void root(const int *ain, int *aout, const void *usrData,
  /frameworks/rs/java/tests/RSTest_CompatLib/src/com/android/rs/test/
kernel_struct.rs 13 struct simpleStruct *aout;
39 _RS_ASSERT(aout[i].i1 == (i + ain[i].i1));
40 _RS_ASSERT(aout[i].f1 == (i + ain[i].f1));
41 _RS_ASSERT(aout[i].i2 == (i + ain[i].i2));
42 _RS_ASSERT(aout[i].f2 == (i + ain[i].f2));
kernel.rs 4 int *aout;
23 _RS_ASSERT(aout[i] == (i + ain[i]));
  /frameworks/rs/java/tests/RsTest/src/com/android/rs/test/
kernel_struct.rs 13 struct simpleStruct *aout;
39 _RS_ASSERT(aout[i].i1 == (i + ain[i].i1));
40 _RS_ASSERT(aout[i].f1 == (i + ain[i].f1));
41 _RS_ASSERT(aout[i].i2 == (i + ain[i].i2));
42 _RS_ASSERT(aout[i].f2 == (i + ain[i].f2));
kernel.rs 4 int *aout;
23 _RS_ASSERT(aout[i] == (i + ain[i]));
  /frameworks/rs/cpu_ref/
rsCpuIntrinsic.cpp 77 Allocation * aout, const void * usr,
82 Allocation * aout, const void * usr,
88 Allocation * aout,
94 preLaunch(slot, ain, aout, usr, usrLen, sc);
96 forEachMtlsSetup(ain, aout, usr, usrLen, sc, &mtls);
104 mCtx->launchThreads(ain, aout, sc, &mtls);
107 postLaunch(slot, ain, aout, usr, usrLen, sc);
113 Allocation * aout,
123 preLaunch(slot, ains[0], aout, usr, usrLen, sc);
125 forEachMtlsSetup(ains, inLen, aout, usr, usrLen, sc, &mtls)
    [all...]
  /frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/
Benchmark.java 26 private Allocation aout; field in class:Benchmark
32 aout = Allocation.createSized(rs, Element.U32(mRS), 10000);
42 mScript.forEach_root(ain, aout);
43 aout.copy1DRangeFrom(0, 1, temp);
50 mScript.set_out(aout);
54 aout.copy1DRangeFrom(0, 1, temp);
  /frameworks/compile/slang/lit-tests/debug/
debug_disabled.rs 8 void root(const int *ain, int *aout, const void *usrData,
debug_enabled.rs 8 void root(const int *ain, int *aout, const void *usrData,

Completed in 321 milliseconds

1 2 3 4 5 6 7 8 91011>>