HomeSort by relevance Sort by last modified time
    Searched refs:aout (Results 1 - 25 of 193) sorted by null

1 2 3 4 5 6 7 8

  /frameworks/base/rs/java/android/renderscript/
ScriptIntrinsicBlend.java 43 private void blend(int id, Allocation ain, Allocation aout, Script.LaunchOptions opt) {
47 if (!aout.getElement().isCompatible(Element.U8_4(mRS))) {
50 forEach(id, ain, aout, null, opt);
57 * @param aout The destination buffer
59 public void forEachClear(Allocation ain, Allocation aout) {
60 forEachClear(ain, aout, null);
67 * @param aout The destination buffer
70 public void forEachClear(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
71 blend(0, ain, aout, opt);
88 * @param aout The destination buffe
    [all...]
ScriptIntrinsicResize.java 78 * @param aout Output allocation. Element type must match
81 public void forEach_bicubic(Allocation aout) {
82 if (aout == mInput) {
85 forEach_bicubic(aout, null);
93 * @param aout Output allocation. Element type must match
97 public void forEach_bicubic(Allocation aout, Script.LaunchOptions opt) {
98 forEach(0, (Allocation) null, aout, null, opt);
ScriptIntrinsicYuvToRGB.java 65 * @param aout Output allocation. Must match creation element
68 public void forEach(Allocation aout) {
69 forEach(0, (Allocation) null, aout, null);
ScriptIntrinsic3DLUT.java 81 * and copy to aout.
84 * @param aout Output allocation
86 public void forEach(Allocation ain, Allocation aout) {
87 forEach(ain, aout, null);
92 * and copy to aout.
95 * @param aout Output allocation
98 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
99 forEach(0, ain, aout, null, opt);
ScriptIntrinsicBlur.java 83 * @param aout Output allocation. Must match creation element
86 public void forEach(Allocation aout) {
87 forEach(0, (Allocation) null, aout, null);
94 * @param aout Output allocation. Must match creation element
98 public void forEach(Allocation aout, Script.LaunchOptions opt) {
99 forEach(0, (Allocation) null, aout, null, opt);
ScriptIntrinsicConvolve5x5.java 106 * @param aout Output allocation. Must match creation element
109 public void forEach(Allocation aout) {
110 forEach(0, (Allocation) null, aout, null);
117 * @param aout Output allocation. Must match creation element
121 public void forEach(Allocation aout, Script.LaunchOptions opt) {
122 forEach(0, (Allocation) null, aout, null, opt);
ScriptIntrinsicConvolve3x3.java 105 * @param aout Output allocation. Must match creation element
108 public void forEach(Allocation aout) {
109 forEach(0, (Allocation) null, aout, null);
116 * @param aout Output allocation. Must match creation element
120 public void forEach(Allocation aout, Script.LaunchOptions opt) {
121 forEach(0, (Allocation) null, aout, null, opt);
ScriptIntrinsicLUT.java 119 * and copy to aout.
122 * @param aout Output allocation
124 public void forEach(Allocation ain, Allocation aout) {
125 forEach(ain, aout, null);
130 * and copy to aout.
133 * @param aout Output allocation
136 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
141 forEach(0, ain, aout, null, opt);
ScriptIntrinsicColorMatrix.java 222 * @param aout Output allocation
224 public void forEach(Allocation ain, Allocation aout) {
225 forEach(ain, aout, null);
241 * @param aout Output allocation
244 public void forEach(Allocation ain, Allocation aout, Script.LaunchOptions opt) {
257 if (!aout.getElement().isCompatible(Element.U8(mRS)) &&
258 !aout.getElement().isCompatible(Element.U8_2(mRS)) &&
259 !aout.getElement().isCompatible(Element.U8_3(mRS)) &&
260 !aout.getElement().isCompatible(Element.U8_4(mRS)) &&
261 !aout.getElement().isCompatible(Element.F32(mRS)) &
    [all...]
Script.java 130 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v) {
133 mRS.validateObject(aout);
134 if (ain == null && aout == null) {
136 "At least one of ain or aout is required to be non-null.");
143 if (aout != null) {
144 out_id = aout.getID(mRS);
157 protected void forEach(int slot, Allocation ain, Allocation aout, FieldPacker v, LaunchOptions sc) {
160 mRS.validateObject(aout);
161 if (ain == null && aout == null) {
163 "At least one of ain or aout is required to be non-null.")
    [all...]
  /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);
  /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/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);
113 Allocation * aout,
123 preLaunch(slot, ains[0], aout, usr, usrLen, sc);
125 forEachMtlsSetup(ains, inLen, aout, usr, usrLen, sc, &mtls)
    [all...]
rsCpuIntrinsic.h 35 Allocation * aout,
43 Allocation * aout,
53 Allocation * aout, const void * usr,
56 Allocation * aout, const void * usr,
  /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/tests/cppbasic-getpointer/
compute.cpp 39 sp<Allocation> aout = Allocation::createTyped(rs, t, RS_ALLOCATION_USAGE_SCRIPT | RS_ALLOCATION_USAGE_SHARED); local
40 printf("Allocation %p %p\n", ain.get(), aout.get());
45 uint32_t *output = (uint32_t*)aout->getPointer(&outputStride);
63 aout->syncAll(RS_ALLOCATION_USAGE_SHARED);
68 sc->forEach_copyAndNot(ain, aout);
74 aout->syncAll(RS_ALLOCATION_USAGE_SCRIPT);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
YuvTest.java 81 Allocation aout = makeOutput(); local
100 syuv.forEach(aout);
105 mVerify.invoke_verify(aref, aout, ay);
120 Allocation aout = makeOutput(); local
143 syuv.forEach(aout);
144 mVerify.invoke_verify(aref, aout, ay);
147 script.forEach_cvt(aout);
148 mVerify.invoke_verify(aref, aout, ay);
163 Allocation aout = makeOutput(); local
188 syuv.forEach(aout);
    [all...]
  /frameworks/rs/
rsScriptIntrinsic.h 46 Allocation * aout,
55 Allocation* aout,
rsScriptIntrinsic.cpp 62 Allocation * aout,
67 rsc->mHal.funcs.script.invokeForEach(rsc, this, slot, ain, aout, usr, usrBytes, sc);
74 Allocation* aout,
79 rsc->mHal.funcs.script.invokeForEachMulti(rsc, this, slot, ains, inLen, aout, usr, usrBytes, sc);
  /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))

Completed in 1022 milliseconds

1 2 3 4 5 6 7 8