/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsic3DLUT.java | 89 * Invoke the kernel and apply the lookup to each cell of ain 92 * @param ain Input allocation 95 public void forEach(Allocation ain, Allocation aout) { 96 forEach(0, ain, aout, null);
|
ScriptIntrinsic3DLUTThunker.java | 60 * Invoke the kernel and apply the lookup to each cell of ain 63 * @param ain Input allocation 66 public void forEach(Allocation ain, Allocation aout) { 67 AllocationThunker aint = (AllocationThunker)ain;
|
ScriptIntrinsicBlurThunker.java | 48 public void setInput(Allocation ain) { 49 AllocationThunker aint = (AllocationThunker) ain;
|
ScriptIntrinsicConvolve3x3Thunker.java | 46 public void setInput(Allocation ain) { 47 AllocationThunker aint = (AllocationThunker)ain;
|
ScriptIntrinsicConvolve5x5Thunker.java | 46 public void setInput(Allocation ain) { 47 AllocationThunker aint = (AllocationThunker)ain;
|
ScriptIntrinsicLUT.java | 127 * Invoke the kernel and apply the lookup to each cell of ain 130 * @param ain Input allocation 133 public void forEach(Allocation ain, Allocation aout) { 138 forEach(0, ain, aout, null);
|
ScriptIntrinsicLUTThunker.java | 77 public void forEach(Allocation ain, Allocation aout) { 78 AllocationThunker aint = (AllocationThunker)ain;
|
ScriptIntrinsicYuvToRGBThunker.java | 46 public void setInput(Allocation ain) { 47 AllocationThunker aint = (AllocationThunker)ain;
|
ScriptCThunker.java | 100 void thunkForEach(int slot, Allocation ain, Allocation aout, FieldPacker v) { 104 if (ain != null) { 105 nin = ((AllocationThunker)ain).mN; 120 void thunkForEach(int slot, Allocation ain, Allocation aout, FieldPacker v, 134 if (ain != null) { 135 nin = ((AllocationThunker)ain).mN;
|
ScriptIntrinsicColorMatrix.java | 150 * Invoke the kernel and apply the matrix to each cell of ain and copy to 153 * @param ain Input allocation 156 public void forEach(Allocation ain, Allocation aout) { 157 forEach(0, ain, aout, null);
|
ScriptIntrinsicColorMatrixThunker.java | 87 public void forEach(Allocation ain, Allocation aout) { 88 AllocationThunker aint = (AllocationThunker)ain;
|
RenderScript.java | 460 native void rsnScriptForEach(int con, int id, int slot, int ain, int aout, byte[] params); 461 native void rsnScriptForEach(int con, int id, int slot, int ain, int aout); 462 native void rsnScriptForEachClipped(int con, int id, int slot, int ain, int aout, byte[] params, 464 native void rsnScriptForEachClipped(int con, int id, int slot, int ain, int aout, 466 synchronized void nScriptForEach(int id, int slot, int ain, int aout, byte[] params) { 469 rsnScriptForEach(mContext, id, slot, ain, aout); 471 rsnScriptForEach(mContext, id, slot, ain, aout, params); 475 synchronized void nScriptForEachClipped(int id, int slot, int ain, int aout, byte[] params, 479 rsnScriptForEachClipped(mContext, id, slot, ain, aout, xstart, xend, ystart, yend, zstart, zend); 481 rsnScriptForEachClipped(mContext, id, slot, ain, aout, params, xstart, xend, ystart, yend, zstart, zend) [all...] |
/frameworks/base/graphics/java/android/renderscript/ |
Script.java | 130 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) { 131 if (ain == null && aout == null) { 133 "At least one of ain or aout is required to be non-null."); 136 if (ain != null) { 137 in_id = ain.getID(mRS); 154 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v, LaunchOptions sc) { 155 if (ain == null && aout == null) { 157 "At least one of ain or aout is required to be non-null."); 161 forEach(slot, ain, aout, v); 165 if (ain != null) [all...] |
/frameworks/rs/ |
rsScriptIntrinsic.h | 45 const Allocation * ain,
|
rsScriptIntrinsic.cpp | 61 const Allocation * ain, 67 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
|
rsScriptC.h | 49 const Allocation * ain,
|
rsScript.h | 113 const Allocation * ain,
|
/frameworks/rs/cpu_ref/ |
rsCpuScript.cpp | 743 void RsdCpuScriptImpl::forEachMtlsSetup(const Allocation * ain, Allocation * aout, 751 if (ain && (const uint8_t *)ain->mHal.drvState.lod[0].mallocPtr == NULL) { 760 if (ain) { 761 mtls->fep.dimX = ain->getType()->getDimX(); 762 mtls->fep.dimY = ain->getType()->getDimY(); 763 mtls->fep.dimZ = ain->getType()->getDimZ(); 764 //mtls->dimArray = ain->getType()->getDimArray(); 813 rsAssert(!ain || (ain->getType()->getDimZ() == 0)) [all...] |
rsCpuCore.h | 58 const Allocation * ain; member in struct:android::renderscript::__anon30634 97 void launchThreads(const Allocation * ain, Allocation * aout,
|
rsCpuScriptGroup.cpp | 139 Allocation *ain = NULL; local 152 ain = n->mInputs[ct3]->mAlloc.get(); 153 //ALOGE(" link in %p", ain); 158 ain = mSG->mInputs[ct3]->mAlloc.get(); 160 //ALOGE(" io in %p", ain); 182 (k->mHasKernelInput == (ain != NULL))) { 183 ins.add(ain);
|
rsCpuIntrinsicHistogram.cpp | 39 void preLaunch(uint32_t slot, const Allocation * ain, 42 void postLaunch(uint32_t slot, const Allocation * ain, 100 void RsdCpuScriptIntrinsicHistogram::preLaunch(uint32_t slot, const Allocation * ain, 126 switch(ain->getType()->getElement()->getVectorSize()) { 145 void RsdCpuScriptIntrinsicHistogram::postLaunch(uint32_t slot, const Allocation * ain,
|
rsd_cpu.h | 73 const Allocation * ain,
|
/prebuilts/sdk/renderscript/lib/ |
javalib.jar | |
/frameworks/rs/cpp/ |
ScriptIntrinsics.cpp | 47 void ScriptIntrinsic3DLUT::forEach(sp<Allocation> ain, sp<Allocation> aout) { 48 if (ain->getType()->getElement()->isCompatible(mElement) == false || 53 Script::forEach(0, ain, aout, NULL, 0); 471 void ScriptIntrinsicHistogram::forEach(sp<Allocation> ain) { 472 if (ain->getType()->getElement()->getVectorSize() < 479 if (!(ain->getType()->getElement()->isCompatible(Element::U8(mRS))) || 480 !(ain->getType()->getElement()->isCompatible(Element::U8_4(mRS)))) { 486 Script::forEach(0, ain, NULL, NULL, 0); 490 void ScriptIntrinsicHistogram::forEach_dot(sp<Allocation> ain) { 497 if (!(ain->getType()->getElement()->isCompatible(Element::U8(mRS))) | [all...] |
/frameworks/rs/driver/ |
rsdBcc.h | 40 const android::renderscript::Allocation * ain,
|