/frameworks/base/graphics/java/android/renderscript/ |
ScriptIntrinsicBlend.java | 43 private void blend(int id, Allocation ain, Allocation aout) { 47 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) { 50 forEach(id, ain, aout, null); 57 * @param aout The destination buffer 59 public void forEachClear(Allocation ain, Allocation aout) { 60 blend(0, ain, aout); 77 * @param aout The destination buffer 79 public void forEachSrc(Allocation ain, Allocation aout) { 80 blend(1, ain, aout); 98 * @param aout The destination buffe [all...] |
ScriptIntrinsicYuvToRGB.java | 65 * @param aout Output allocation. Must match creation element 68 public void forEach(Allocation aout) { 69 forEach(0, null, aout, null);
|
ScriptIntrinsic3DLUT.java | 83 * and copy to aout. 86 * @param aout Output allocation 88 public void forEach(Allocation ain, Allocation aout) { 89 forEach(0, ain, aout, null);
|
ScriptIntrinsicColorMatrix.java | 225 * @param aout Output allocation 227 public void forEach(Allocation ain, Allocation aout) { 240 if (!aout.getElement().isCompatible(Element.U8(mRS)) && 241 !aout.getElement().isCompatible(Element.U8_2(mRS)) && 242 !aout.getElement().isCompatible(Element.U8_3(mRS)) && 243 !aout.getElement().isCompatible(Element.U8_4(mRS)) && 244 !aout.getElement().isCompatible(Element.F32(mRS)) && 245 !aout.getElement().isCompatible(Element.F32_2(mRS)) && 246 !aout.getElement().isCompatible(Element.F32_3(mRS)) && 247 !aout.getElement().isCompatible(Element.F32_4(mRS))) [all...] |
ScriptIntrinsicBlur.java | 87 * @param aout Output allocation. Must match creation element 90 public void forEach(Allocation aout) { 91 forEach(0, null, aout, null);
|
ScriptIntrinsicConvolve3x3.java | 107 * @param aout Output allocation. Must match creation element 110 public void forEach(Allocation aout) { 111 forEach(0, null, aout, null);
|
ScriptIntrinsicConvolve5x5.java | 108 * @param aout Output allocation. Must match creation element 111 public void forEach(Allocation aout) { 112 forEach(0, null, aout, null);
|
/frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/ |
ScriptIntrinsicBlend.java | 48 private void blend(int id, Allocation ain, Allocation aout) { 52 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) { 55 forEach(id, ain, aout, null); 62 * @param aout The destination buffer 64 public void forEachClear(Allocation ain, Allocation aout) { 65 blend(0, ain, aout); 82 * @param aout The destination buffer 84 public void forEachSrc(Allocation ain, Allocation aout) { 85 blend(1, ain, aout); 103 * @param aout The destination buffe [all...] |
ScriptIntrinsicBlendThunker.java | 43 public void forEachClear(Allocation ain, Allocation aout) { 45 AllocationThunker aoutt = (AllocationThunker)aout; 64 public void forEachSrc(Allocation ain, Allocation aout) { 66 AllocationThunker aoutt = (AllocationThunker)aout; 85 public void forEachDst(Allocation ain, Allocation aout) { 87 AllocationThunker aoutt = (AllocationThunker)aout; 106 public void forEachSrcOver(Allocation ain, Allocation aout) { 108 AllocationThunker aoutt = (AllocationThunker)aout; 127 public void forEachDstOver(Allocation ain, Allocation aout) { 129 AllocationThunker aoutt = (AllocationThunker)aout; [all...] |
ScriptIntrinsicYuvToRGB.java | 70 * @param aout Output allocation. Must match creation element 73 public void forEach(Allocation aout) { 74 forEach(0, null, aout, null);
|
Script.java | 224 * @param aout 227 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) { 229 mT.thunkForEach(slot, ain, aout, v); 233 if (ain == null && aout == null) { 235 "At least one of ain or aout is required to be non-null."); 242 if (aout != null) { 243 out_id = aout.getID(mRS); 257 * @param aout 261 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v, LaunchOptions sc) { 263 mT.thunkForEach(slot, ain, aout, v, sc) [all...] |
/frameworks/rs/java/tests/LatencyBenchmark/src/com/example/android/rs/computebench/ |
Benchmark.java | 26 private Allocation aout; field in class:Benchmark 32 aout = Allocation.createSized(rs, Element.U32(mRS), 10000); 42 mScript.forEach_root(ain, aout); 43 aout.copy1DRangeFrom(0, 1, temp); 50 mScript.set_out(aout); 54 aout.copy1DRangeFrom(0, 1, temp);
|
/frameworks/rs/tests/cppallocation/ |
compute.cpp | 34 sp<Allocation> aout = Allocation::createTyped(rs, t); local 45 sc->forEach_multiply(ain, aout); 47 aout->copy1DRangeTo(0, numElems, buf); 62 aout.clear();
|
/frameworks/rs/cpu_ref/ |
rsCpuIntrinsic.cpp | 77 Allocation * aout, const void * usr, 82 Allocation * aout, const void * usr, 88 Allocation * aout, 94 preLaunch(slot, ain, aout, usr, usrLen, sc); 96 forEachMtlsSetup(ain, aout, usr, usrLen, sc, &mtls); 104 mCtx->launchThreads(ain, aout, sc, &mtls); 107 postLaunch(slot, ain, aout, usr, usrLen, sc);
|
rsCpuIntrinsic.h | 35 Allocation * aout, 44 Allocation * aout, const void * usr, 47 Allocation * aout, const void * usr,
|
rsCpuScript.h | 56 Allocation * aout, const void * usr, 59 Allocation * aout, const void * usr, 63 Allocation * aout, 83 void forEachMtlsSetup(const Allocation * ain, Allocation * aout,
|
/cts/tests/tests/renderscript/src/android/renderscript/cts/ |
YuvTest.java | 91 Allocation aout = makeOutput(); local 110 syuv.forEach(aout); 115 mVerify.invoke_verify(aref, aout, ay); 130 Allocation aout = makeOutput(); local 153 syuv.forEach(aout); 154 mVerify.invoke_verify(aref, aout, ay); 157 script.forEach_cvt(aout); 158 mVerify.invoke_verify(aref, aout, ay); 173 Allocation aout = makeOutput(); local 198 syuv.forEach(aout); [all...] |
/frameworks/native/cmds/dumpsys/ |
dumpsys.cpp | 61 aout << "Currently running services:" << endl; 66 aout << " " << services[i] << endl; 79 aout << "------------------------------------------------------------" 81 aout << "DUMP OF SERVICE " << services[i] << ":" << endl;
|
/frameworks/rs/tests/cppstrided/ |
compute.cpp | 36 sp<Allocation> aout = Allocation::createTyped(rs, t); local 54 sc->forEach_multiply(ain, aout); 56 aout->copy2DStridedTo(buf, stride * sizeof(uint32_t)); 73 aout.clear();
|
/frameworks/rs/tests/latency/ |
latency.cpp | 71 sp<Allocation> aout = Allocation::createTyped(rs, t); local 80 sc->forEach_root(ain, aout); 95 sc->forEach_root(ain, aout); 96 aout->copy1DTo(buf); 110 aout.clear();
|
/external/chromium_org/third_party/openssl/openssl/crypto/dh/ |
dhtest.c | 103 int i,alen,blen,aout,bout,ret=1; local 168 aout=DH_compute_key(abuf,b->pub_key,a); 171 for (i=0; i<aout; i++) 189 if ((aout < 4) || (bout != aout) || (memcmp(abuf,bbuf,aout) != 0))
|
/external/openssl/crypto/dh/ |
dhtest.c | 103 int i,alen,blen,aout,bout,ret=1; local 168 aout=DH_compute_key(abuf,b->pub_key,a); 171 for (i=0; i<aout; i++) 189 if ((aout < 4) || (bout != aout) || (memcmp(abuf,bbuf,aout) != 0))
|
/frameworks/rs/cpp/ |
Script.cpp | 29 void Script::forEach(uint32_t slot, sp<const Allocation> ain, sp<const Allocation> aout, 31 if ((ain == NULL) && (aout == NULL)) { 32 mRS->throwError(RS_ERROR_INVALID_PARAMETER, "At least one of ain or aout is required to be non-null."); 35 void *out_id = BaseObj::getObjID(aout);
|
/external/chromium_org/third_party/openssl/openssl/crypto/perlasm/ |
x86gas.pl | 7 $::lbdecor=$::aout?"L":".L"; # local label decoration 8 $nmdecor=($::aout or $::coff)?"_":""; # external name decoration 13 $align=log($align)/log(2) if ($::aout); 14 $com_start="#" if ($::aout or $::coff); 111 elsif (($::aout and !$::pic) or $::macosx) 174 if ($::aout) 185 if (($::pic && ($::elf || $::aout)) || $::macosx) 237 elsif ($::aout)
|
/external/openssl/crypto/perlasm/ |
x86gas.pl | 7 $::lbdecor=$::aout?"L":".L"; # local label decoration 8 $nmdecor=($::aout or $::coff)?"_":""; # external name decoration 13 $align=log($align)/log(2) if ($::aout); 14 $com_start="#" if ($::aout or $::coff); 111 elsif (($::aout and !$::pic) or $::macosx) 174 if ($::aout) 185 if (($::pic && ($::elf || $::aout)) || $::macosx) 237 elsif ($::aout)
|