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

123

/frameworks/base/graphics/java/android/renderscript/
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 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 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 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 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 DScriptIntrinsicColorMatrix.java148 * aout.
151 * @param aout Output allocation
153 public void forEach(Allocation ain, Allocation aout) { argument
154 forEach(0, ain, aout, null);
/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
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 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 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 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 DScriptIntrinsicColorMatrix.java146 * aout.
149 * @param aout Output allocation
151 public void forEach(Allocation ain, Allocation aout) { argument
152 forEach(0, ain, aout, null);
/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/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/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);
H A DScriptC_mono.h54 void forEach_root(android::sp<const android::renderscriptCpp::Allocation> ain, android::sp<const android::renderscriptCpp::Allocation> aout) const;
/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 DrsScriptIntrinsic.h46 Allocation * aout,
/frameworks/support/renderscript/v8/rs_support/
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 DrsScriptIntrinsic.h46 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/base/cmds/service/
H A Dservice.cpp95 aout << "Service " << argv[optind] <<
105 aout << "Found " << services.size() << " services:" << endl;
109 aout << i
238 aout << "Result: " << reply << endl;
261 aout << "Usage: service [-h|-?]\n"
/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);

Completed in 6813 milliseconds

123