Searched defs:ain (Results 26 - 35 of 35) sorted by path

12

/frameworks/support/renderscript/v8/java/src/android/support/v8/renderscript/
H A DScriptIntrinsicConvolve5x5.java60 * @param ain The input allocation.
62 public void setInput(Allocation ain) { argument
63 mInput = ain;
64 bindAllocation(ain, 1);
H A DScriptIntrinsicLUT.java121 * Invoke the kernel and apply the lookup to each cell of ain
124 * @param ain Input allocation
127 public void forEach(Allocation ain, Allocation aout) { argument
132 forEach(0, ain, aout, null);
H A DScriptIntrinsicYuvToRGB.java55 * @param ain The input allocation.
57 public void setInput(Allocation ain) { argument
58 mInput = ain;
59 bindAllocation(ain, 0);
/frameworks/support/renderscript/v8/jni/
H A Dandroid_renderscript_RenderScript.cpp707 jint script, jint slot, jint ain, jint aout)
710 rsScriptForEach(con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, NULL, 0);
714 jint script, jint slot, jint ain, jint aout, jbyteArray params)
719 rsScriptForEach(con, (RsScript)script, slot, (RsAllocation)ain, (RsAllocation)aout, ptr, len);
706 nScriptForEach(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout) argument
713 nScriptForEachV(JNIEnv *_env, jobject _this, RsContext con, jint script, jint slot, jint ain, jint aout, jbyteArray params) argument
/frameworks/support/renderscript/v8/rs_support/driver/
H A DrsdBcc.cpp423 const Allocation * ain,
432 if (ain) {
433 mtls->fep.dimX = ain->getType()->getDimX();
434 mtls->fep.dimY = ain->getType()->getDimY();
435 mtls->fep.dimZ = ain->getType()->getDimZ();
436 //mtls->dimArray = ain->getType()->getDimArray();
474 rsAssert(!ain || (ain->getType()->getDimZ() == 0));
478 mtls->ain = ain;
422 rsdScriptInvokeForEachMtlsSetup(const Context *rsc, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc, MTLaunchStruct *mtls) argument
505 rsdScriptLaunchThreads(const Context *rsc, Script *s, uint32_t slot, const Allocation * ain, Allocation * aout, const void * usr, uint32_t usrLen, const RsScriptCall *sc, MTLaunchStruct *mtls) argument
562 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...]
H A DrsdBcc.h41 const android::renderscript::Allocation * ain,
145 const android::renderscript::Allocation * ain; member in struct:__anon1570
164 const android::renderscript::Allocation * ain,
172 const android::renderscript::Allocation * ain,
H A DrsdScriptGroup.cpp63 Allocation *ain = NULL; local
68 ain = n->mInputs[ct3]->mAlloc.get();
69 //ALOGE(" link in %p", ain);
74 ain = sg->mInputs[ct3]->mAlloc.get();
75 //ALOGE(" io in %p", ain);
92 ins.add(ain);
/frameworks/support/renderscript/v8/rs_support/
H A DrsScriptC.cpp85 const Allocation * ain,
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 DrsScriptGroup.cpp280 Allocation *ain = NULL; local
285 ain = n->mInputs[ct3]->mAlloc.get();
286 //ALOGE(" link in %p", ain);
291 ain = mInputs[ct3]->mAlloc.get();
292 //ALOGE(" io in %p", ain);
309 n->mScript->runForEach(rsc, k->mSlot, ain, aout, NULL, 0);
H A DrsScriptIntrinsic.cpp57 const Allocation * ain,
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 94 milliseconds

12