HomeSort by relevance Sort by last modified time
    Searched refs:ain (Results 26 - 50 of 91) sorted by null

12 3 4

  /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;
  /frameworks/base/rs/java/android/renderscript/
Script.java 130 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) {
132 mRS.validateObject(ain);
134 if (ain == null && aout == null) {
136 "At least one of ain or aout is required to be non-null.");
139 if (ain != null) {
140 in_id = ain.getID(mRS);
157 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v, LaunchOptions sc) {
159 mRS.validateObject(ain);
161 if (ain == null && aout == null) {
163 "At least one of ain or aout is required to be non-null.")
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuScript.h 67 virtual void preLaunch(uint32_t slot, const Allocation * ain,
70 virtual void postLaunch(uint32_t slot, const Allocation * ain,
74 const Allocation * ain,
103 void forEachMtlsSetup(const Allocation * ain, Allocation * aout,
rsCpuScript.cpp 797 void RsdCpuScriptImpl::forEachMtlsSetup(const Allocation * ain, Allocation * aout,
805 if (ain && (const uint8_t *)ain->mHal.drvState.lod[0].mallocPtr == NULL) {
814 if (ain != NULL) {
815 const Type *inType = ain->getType();
833 if (ain != NULL && aout != NULL) {
834 if (!ain->hasSameDims(aout)) {
880 rsAssert(!ain || (ain->getType()->getDimZ() == 0));
883 mtls->ain = ain
920 const Allocation* ain = ains[index]; local
1029 const Allocation *ain = ains[index]; local
    [all...]
rsCpuScriptGroup.cpp 139 Allocation *ain = NULL; local
146 ain = n->mInputs[ct3]->mAlloc.get();
150 if (ain == NULL) {
153 ain = mSG->mInputs[ct3]->mAlloc.get();
180 (k->mHasKernelInput == (ain != NULL)));
182 ins.add(ain);
  /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 47 const Allocation * ain,
  /frameworks/rs/tests/cppbasic/
compute.cpp 34 sp<Allocation> ain = Allocation::createTyped(rs, t); local
36 printf("Allocation %p %p\n", ain.get(), aout.get());
63 ain->copy1DRangeFrom(0, t->getCount(), buf);
66 sc->forEach_root(ain, aout);
  /frameworks/rs/tests/cppbasic-shared/
compute.cpp 34 sp<Allocation> ain = Allocation::createTyped(rs, t); local
36 printf("Allocation %p %p\n", ain.get(), aout.get());
63 ain->copy1DRangeFrom(0, t->getCount(), buf);
66 sc->forEach_root(ain, aout);
  /prebuilts/ndk/9/platforms/android-19/arch-arm/usr/include/rs/
rsScriptIntrinsic.h 45 const Allocation * ain,
rsScriptC.h 49 const Allocation * ain,
  /prebuilts/ndk/9/platforms/android-19/arch-mips/usr/include/rs/
rsScriptIntrinsic.h 45 const Allocation * ain,
  /prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/rs/
rsScriptIntrinsic.h 45 const Allocation * ain,
  /prebuilts/sdk/renderscript/lib/
javalib.jar 

Completed in 651 milliseconds

12 3 4