Searched defs:aout (Results 1 - 25 of 54) sorted by relevance

123

/frameworks/base/rs/java/android/renderscript/
H A DScriptIntrinsic3DLUT.java81 * and copy to aout.
84 * @param aout Output allocation
86 public void forEach(Allocation ain, Allocation aout) { argument
87 forEach(ain, aout, null);
92 * and copy to aout.
95 * @param aout Output allocation
98 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) { argument
99 forEach(0, ain, aout, null, opt);
H A DScriptIntrinsicResize.java78 * @param aout Output allocation. Element type must match
81 public void forEach_bicubic(Allocation aout) { argument
82 if (aout == mInput) {
85 forEach_bicubic(aout, null);
93 * @param aout Output allocation. Element type must match
97 public void forEach_bicubic(Allocation aout, Script.LaunchOptions opt) { argument
98 forEach(0, (Allocation) null, aout, null, opt);
H A DScriptIntrinsicYuvToRGB.java65 * @param aout Output allocation. Must match creation element
68 public void forEach(Allocation aout) { argument
69 forEach(0, (Allocation) null, aout, null);
H A DScriptIntrinsicBlur.java83 * @param aout Output allocation. Must match creation element
86 public void forEach(Allocation aout) { argument
87 forEach(0, (Allocation) null, aout, null);
94 * @param aout Output allocation. Must match creation element
98 public void forEach(Allocation aout, Script.LaunchOptions opt) { argument
99 forEach(0, (Allocation) null, aout, null, opt);
H A DScriptIntrinsicConvolve3x3.java105 * @param aout Output allocation. Must match creation element
108 public void forEach(Allocation aout) { argument
109 forEach(0, (Allocation) null, aout, null);
116 * @param aout Output allocation. Must match creation element
120 public void forEach(Allocation aout, Script.LaunchOptions opt) { argument
121 forEach(0, (Allocation) null, aout, null, opt);
H A DScriptIntrinsicConvolve5x5.java106 * @param aout Output allocation. Must match creation element
109 public void forEach(Allocation aout) { argument
110 forEach(0, (Allocation) null, aout, null);
117 * @param aout Output allocation. Must match creation element
121 public void forEach(Allocation aout, Script.LaunchOptions opt) { argument
122 forEach(0, (Allocation) null, aout, null, opt);
/frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/
H A DBenchmark.java26 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/rs/tests/cppallocation/
H A Dcompute.cpp34 sp<Allocation> aout = Allocation::createTyped(rs, t); local
45 sc->forEach_multiply(ain, aout);
47 aout->copy1DRangeTo(0, numElems, buf);
62 aout.clear();
/frameworks/rs/tests/cppstrided/
H A Dcompute.cpp36 sp<Allocation> aout = Allocation::createTyped(rs, t); local
54 sc->forEach_multiply(ain, aout);
56 aout->copy2DStridedTo(buf, stride * sizeof(uint32_t));
73 aout.clear();
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicYuvToRGB.java70 * @param aout Output allocation. Must match creation element
73 public void forEach(Allocation aout) { argument
74 forEach(0, null, aout, null);
H A DScriptIntrinsic3DLUT.java90 * and copy to aout.
93 * @param aout Output allocation
95 public void forEach(Allocation ain, Allocation aout) { argument
96 forEach(0, ain, aout, null);
H A DScriptIntrinsic3DLUTThunker.java61 * and copy to aout.
64 * @param aout Output allocation
66 public void forEach(Allocation ain, Allocation aout) { argument
68 AllocationThunker aoutt = (AllocationThunker)aout;
H A DScriptIntrinsicBlur.java91 * @param aout Output allocation. Must match creation element
94 public void forEach(Allocation aout) { argument
95 forEach(0, null, aout, null);
H A DScriptIntrinsicBlurThunker.java65 public void forEach(Allocation aout) { argument
66 AllocationThunker aoutt = (AllocationThunker) aout;
H A DScriptIntrinsicColorMatrixThunker.java87 public void forEach(Allocation ain, Allocation aout) { argument
89 AllocationThunker aoutt = (AllocationThunker)aout;
H A DScriptIntrinsicConvolve3x3.java102 * @param aout Output allocation. Must match creation element
105 public void forEach(Allocation aout) { argument
106 forEach(0, null, aout, null);
H A DScriptIntrinsicConvolve3x3Thunker.java63 public void forEach(Allocation aout) { argument
64 AllocationThunker aoutt = (AllocationThunker)aout;
H A DScriptIntrinsicConvolve5x5.java98 * @param aout Output allocation. Must match creation element
101 public void forEach(Allocation aout) { argument
102 forEach(0, null, aout, null);
H A DScriptIntrinsicConvolve5x5Thunker.java63 public void forEach(Allocation aout) { argument
64 AllocationThunker aoutt = (AllocationThunker)aout;
H A DScriptIntrinsicYuvToRGBThunker.java55 public void forEach(Allocation aout) { argument
56 AllocationThunker aoutt = (AllocationThunker)aout;
/frameworks/rs/cpp/
H A DScript.cpp29 void Script::forEach(uint32_t slot, sp<const Allocation> ain, sp<const Allocation> aout, argument
31 if ((ain == NULL) && (aout == NULL)) {
32 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "At least one of ain or aout is required to be non-null.");
35 void *out_id = BaseObj::getObjID(aout);
/frameworks/rs/tests/cppbasic/
H A Dcompute.cpp35 sp<Allocation> aout = Allocation::createTyped(rs, t); local
36 printf("Allocation %p %p\n", ain.get(), aout.get());
66 sc->forEach_root(ain, aout);
/frameworks/rs/tests/cppbasic-getpointer/
H A Dcompute.cpp39 sp<Allocation> aout = Allocation::createTyped(rs, t, RS_ALLOCATION_USAGE_SCRIPT | RS_ALLOCATION_USAGE_SHARED); local
40 printf("Allocation %p %p\n", ain.get(), aout.get());
45 uint32_t *output = (uint32_t*)aout->getPointer(&outputStride);
63 aout->syncAll(RS_ALLOCATION_USAGE_SHARED);
68 sc->forEach_copyAndNot(ain, aout);
74 aout->syncAll(RS_ALLOCATION_USAGE_SCRIPT);
/frameworks/rs/tests/cppbasic-shared/
H A Dcompute.cpp35 sp<Allocation> aout = Allocation::createTyped(rs, t); local
36 printf("Allocation %p %p\n", ain.get(), aout.get());
66 sc->forEach_root(ain, aout);
/frameworks/rs/tests/latency/
H A Dlatency.cpp71 sp<Allocation> aout = Allocation::createTyped(rs, t); local
80 sc->forEach_root(ain, aout);
95 sc->forEach_root(ain, aout);
96 aout->copy1DTo(buf);
110 aout.clear();

Completed in 800 milliseconds

123