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

/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/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/base/graphics/java/android/renderscript/
H A DScript.java51 * @param aout
54 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) { argument
55 if (ain == null && aout == null) {
57 "At least one of ain or aout is required to be non-null.");
64 if (aout != null) {
65 out_id = aout.getID(mRS);
H A DRenderScript.java504 native void rsnScriptForEach(int con, int id, int slot, int ain, int aout, byte[] params); argument
505 native void rsnScriptForEach(int con, int id, int slot, int ain, int aout); argument
506 synchronized void nScriptForEach(int id, int slot, int ain, int aout, byte[] params) { argument
509 rsnScriptForEach(mContext, id, slot, ain, aout);
511 rsnScriptForEach(mContext, id, slot, ain, aout, params);
/frameworks/rs/
H A DrsScriptC.cpp133 Allocation * aout,
142 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
130 runForEach(Context *rsc, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, size_t usrBytes, const RsScriptCall *sc) argument
/frameworks/rs/driver/
H A DrsdBcc.cpp219 Allocation * aout; member in struct:__anon1539
311 Allocation * aout,
333 } else if (aout) {
334 mtls.dimX = aout->getType()->getDimX();
335 mtls.dimY = aout->getType()->getDimY();
336 mtls.dimZ = aout->getType()->getDimZ();
337 //mtls.dimArray = aout->getType()->getDimArray();
377 mtls.aout = aout;
394 if (aout) {
307 rsdScriptInvokeForEach(const Context *rsc, Script *s, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc) argument
[all...]
/frameworks/base/graphics/jni/
H A Dandroid_renderscript_RenderScript.cpp1006 jint script, jint slot, jint ain, jint aout)
1009 rsScriptForEach(con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, NULL, 0);
1013 jint script, jint slot, jint ain, jint aout, jbyteArray params)
1018 rsScriptForEach(con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, ptr, len);
1005 nScriptForEach(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout) argument
1012 nScriptForEachV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout, jbyteArray params) argument

Completed in 84 milliseconds