Searched refs:aout (Results 1 - 25 of 63) sorted by relevance

123

/frameworks/base/graphics/java/android/renderscript/
H A DScriptIntrinsicBlend.java43 private void blend(int id, Allocation ain, Allocation aout) { argument
47 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) {
50 forEach(id, ain, aout, null);
57 * @param aout The destination buffer
59 public void forEachClear(Allocation ain, Allocation aout) { argument
60 blend(0, ain, aout);
77 * @param aout The destination buffer
79 public void forEachSrc(Allocation ain, Allocation aout) { argument
80 blend(1, ain, aout);
98 * @param aout Th
100 forEachDst(Allocation ain, Allocation aout) argument
119 forEachSrcOver(Allocation ain, Allocation aout) argument
138 forEachDstOver(Allocation ain, Allocation aout) argument
157 forEachSrcIn(Allocation ain, Allocation aout) argument
176 forEachDstIn(Allocation ain, Allocation aout) argument
195 forEachSrcOut(Allocation ain, Allocation aout) argument
214 forEachDstOut(Allocation ain, Allocation aout) argument
234 forEachSrcAtop(Allocation ain, Allocation aout) argument
254 forEachDstAtop(Allocation ain, Allocation aout) argument
273 forEachXor(Allocation ain, Allocation aout) argument
302 forEachMultiply(Allocation ain, Allocation aout) argument
398 forEachAdd(Allocation ain, Allocation aout) argument
417 forEachSubtract(Allocation ain, Allocation aout) argument
[all...]
H A DScriptIntrinsicYuvToRGB.java65 * @param aout Output allocation. Must match creation element
68 public void forEach(Allocation aout) { argument
69 forEach(0, null, aout, null);
H A DScriptIntrinsic3DLUT.java83 * and copy to aout.
86 * @param aout Output allocation
88 public void forEach(Allocation ain, Allocation aout) { argument
89 forEach(0, ain, aout, null);
H A DScriptIntrinsicConvolve5x5.java94 * @param aout Output allocation. Must match creation element
97 public void forEach(Allocation aout) { argument
98 forEach(0, null, aout, null);
H A DScriptIntrinsicBlur.java87 * @param aout Output allocation. Must match creation element
90 public void forEach(Allocation aout) { argument
91 forEach(0, null, aout, null);
H A DScriptIntrinsicConvolve3x3.java97 * @param aout Output allocation. Must match creation element
100 public void forEach(Allocation aout) { argument
101 forEach(0, null, aout, null);
H A DScriptIntrinsicLUT.java122 * and copy to aout.
125 * @param aout Output allocation
127 public void forEach(Allocation ain, Allocation aout) { argument
132 forEach(0, ain, aout, null);
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicBlend.java48 private void blend(int id, Allocation ain, Allocation aout) { argument
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) { argument
65 blend(0, ain, aout);
82 * @param aout The destination buffer
84 public void forEachSrc(Allocation ain, Allocation aout) { argument
85 blend(1, ain, aout);
103 * @param aout Th
105 forEachDst(Allocation ain, Allocation aout) argument
124 forEachSrcOver(Allocation ain, Allocation aout) argument
143 forEachDstOver(Allocation ain, Allocation aout) argument
162 forEachSrcIn(Allocation ain, Allocation aout) argument
181 forEachDstIn(Allocation ain, Allocation aout) argument
200 forEachSrcOut(Allocation ain, Allocation aout) argument
219 forEachDstOut(Allocation ain, Allocation aout) argument
239 forEachSrcAtop(Allocation ain, Allocation aout) argument
259 forEachDstAtop(Allocation ain, Allocation aout) argument
278 forEachXor(Allocation ain, Allocation aout) argument
307 forEachMultiply(Allocation ain, Allocation aout) argument
403 forEachAdd(Allocation ain, Allocation aout) argument
422 forEachSubtract(Allocation ain, Allocation aout) argument
[all...]
H A DScriptIntrinsicBlendThunker.java39 public void forEachClear(Allocation ain, Allocation aout) { argument
41 AllocationThunker aoutt = (AllocationThunker)aout;
52 public void forEachSrc(Allocation ain, Allocation aout) { argument
54 AllocationThunker aoutt = (AllocationThunker)aout;
65 public void forEachDst(Allocation ain, Allocation aout) { argument
67 AllocationThunker aoutt = (AllocationThunker)aout;
78 public void forEachSrcOver(Allocation ain, Allocation aout) { argument
80 AllocationThunker aoutt = (AllocationThunker)aout;
91 public void forEachDstOver(Allocation ain, Allocation aout) { argument
93 AllocationThunker aoutt = (AllocationThunker)aout;
104 forEachSrcIn(Allocation ain, Allocation aout) argument
117 forEachDstIn(Allocation ain, Allocation aout) argument
130 forEachSrcOut(Allocation ain, Allocation aout) argument
143 forEachDstOut(Allocation ain, Allocation aout) argument
156 forEachSrcAtop(Allocation ain, Allocation aout) argument
169 forEachDstAtop(Allocation ain, Allocation aout) argument
182 forEachXor(Allocation ain, Allocation aout) argument
195 forEachMultiply(Allocation ain, Allocation aout) argument
208 forEachAdd(Allocation ain, Allocation aout) argument
221 forEachSubtract(Allocation ain, Allocation aout) argument
[all...]
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 DScript.java224 * @param aout
227 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) { argument
229 mT.thunkForEach(slot, ain, aout, v);
233 if (ain == null && aout == null) {
235 "At least one of ain or aout is required to be non-null.");
242 if (aout != null) {
243 out_id = aout.getID(mRS);
257 * @param aout
261 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v, LaunchOptions sc) { argument
263 mT.thunkForEach(slot, ain, aout,
[all...]
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.java53 * and copy to aout.
56 * @param aout Output allocation
58 public void forEach(Allocation ain, Allocation aout) { argument
60 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.java53 public void forEach(Allocation aout) { argument
54 AllocationThunker aoutt = (AllocationThunker) aout;
H A DScriptIntrinsicColorMatrixThunker.java63 public void forEach(Allocation ain, Allocation aout) { argument
65 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);
/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/native/cmds/dumpsys/
H A Ddumpsys.cpp57 aout << "Currently running services:" << endl;
62 aout << " " << services[i] << endl;
71 aout << "------------------------------------------------------------"
73 aout << "DUMP OF SERVICE " << services[i] << ":" << endl;
/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/rs/tests/latency/
H A Dlatency.cpp67 sp<Allocation> aout = Allocation::createTyped(rs, t); local
76 sc->forEach_root(ain, aout);
91 sc->forEach_root(ain, aout);
92 aout->copy1DTo(buf);
106 aout.clear();
/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("At least one of ain or aout is required to be non-null.");
35 void *out_id = BaseObj::getObjID(aout);
/frameworks/rs/cpu_ref/
H A DrsCpuIntrinsic.cpp78 Allocation * aout,
84 forEachMtlsSetup(ain, aout, usr, usrLen, sc, &mtls);
92 mCtx->launchThreads(ain, aout, sc, &mtls);
76 invokeForEach(uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc) argument
/frameworks/rs/
H A DrsScriptIntrinsic.cpp58 Allocation * aout,
63 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
55 runForEach(Context *rsc, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, size_t usrBytes, const RsScriptCall *sc) argument

Completed in 330 milliseconds

123