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

12

/frameworks/base/graphics/java/android/renderscript/
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 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 DScriptIntrinsicColorMatrix.java148 * aout.
151 * @param aout Output allocation
153 public void forEach(Allocation ain, Allocation aout) { argument
154 forEach(0, ain, aout, null);
H A DScriptIntrinsicConvolve3x3.java99 * @param aout Output allocation. Must match creation element
102 public void forEach(Allocation aout) { argument
103 forEach(0, null, 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 DScriptIntrinsicLUT.java124 * and copy to aout.
127 * @param aout Output allocation
129 public void forEach(Allocation ain, Allocation aout) { argument
134 forEach(0, ain, aout, null);
H A DScriptIntrinsicBlend.java45 private void blend(int id, Allocation ain, Allocation aout) { argument
49 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) {
52 forEach(id, ain, aout, null);
59 * @param aout The destination buffer
61 public void forEachClear(Allocation ain, Allocation aout) { argument
62 blend(0, ain, aout);
79 * @param aout The destination buffer
81 public void forEachSrc(Allocation ain, Allocation aout) { argument
82 blend(1, ain, aout);
99 * @param aout Th
101 forEachDst(Allocation ain, Allocation aout) argument
120 forEachSrcOver(Allocation ain, Allocation aout) argument
139 forEachDstOver(Allocation ain, Allocation aout) argument
158 forEachSrcIn(Allocation ain, Allocation aout) argument
177 forEachDstIn(Allocation ain, Allocation aout) argument
196 forEachSrcOut(Allocation ain, Allocation aout) argument
215 forEachDstOut(Allocation ain, Allocation aout) argument
235 forEachSrcAtop(Allocation ain, Allocation aout) argument
255 forEachDstAtop(Allocation ain, Allocation aout) argument
274 forEachXor(Allocation ain, Allocation aout) argument
303 forEachMultiply(Allocation ain, Allocation aout) argument
399 forEachAdd(Allocation ain, Allocation aout) argument
418 forEachSubtract(Allocation ain, Allocation aout) argument
[all...]
H A DScript.java146 * @param aout
149 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) { argument
150 if (ain == null && aout == null) {
152 "At least one of ain or aout is required to be non-null.");
159 if (aout != null) {
160 out_id = aout.getID(mRS);
/frameworks/rs/tests/
H A Dcompute.cpp35 sp<Allocation> aout = Allocation::createTyped(rs, t); local
36 printf("Allocation %p %p\n", ain.get(), aout.get());
50 sc->forEach_root(ain, aout);
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
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 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 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 DScriptIntrinsicColorMatrix.java146 * aout.
149 * @param aout Output allocation
151 public void forEach(Allocation ain, Allocation aout) { argument
152 forEach(0, ain, 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);
H A DScript.java146 * @param aout
149 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) { argument
150 if (ain == null && aout == null) {
152 "At least one of ain or aout is required to be non-null.");
159 if (aout != null) {
160 out_id = aout.getID(mRS);
/frameworks/rs/driver/
H A DrsdScriptGroup.cpp73 Allocation *aout = NULL; local
90 aout = n->mOutputs[ct3]->mAlloc.get();
91 //ALOGE(" link out %p", aout);
96 aout = sg->mOutputs[ct3]->mAlloc.get();
97 //ALOGE(" io out %p", aout);
101 if ((k->mHasKernelOutput == (aout != NULL)) &&
104 outs.add(aout);
H A DrsdBcc.h47 android::renderscript::Allocation * aout,
148 android::renderscript::Allocation * aout; member in struct:__anon1534
167 android::renderscript::Allocation * aout,
175 android::renderscript::Allocation * aout,
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdScriptGroup.cpp64 Allocation *aout = NULL; local
81 aout = n->mOutputs[ct3]->mAlloc.get();
82 //ALOGE(" link out %p", aout);
87 aout = sg->mOutputs[ct3]->mAlloc.get();
88 //ALOGE(" io out %p", aout);
93 outs.add(aout);
/frameworks/rs/cpp/
H A DScript.cpp35 void Script::forEach(uint32_t slot, sp<const Allocation> ain, sp<const Allocation> aout, argument
37 if ((ain == NULL) && (aout == NULL)) {
38 mRS->throwError("At least one of ain or aout is required to be non-null.");
41 void *out_id = BaseObj::getObjID(aout);
/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
H A DrsScriptC.cpp151 Allocation * aout,
160 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
148 runForEach(Context *rsc, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, size_t usrBytes, const RsScriptCall *sc) argument
H A DrsScriptGroup.cpp281 Allocation *aout = NULL; local
298 aout = n->mOutputs[ct3]->mAlloc.get();
299 //ALOGE(" link out %p", aout);
304 aout = mOutputs[ct3]->mAlloc.get();
305 //ALOGE(" io out %p", aout);
309 n->mScript->runForEach(rsc, k->mSlot, ain, aout, NULL, 0);
/frameworks/support/renderscript/v8/rs_support/
H A DrsScriptC.cpp86 Allocation * aout,
95 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
83 runForEach(Context *rsc, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, size_t usrBytes, const RsScriptCall *sc) argument
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 568 milliseconds

12