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

1 2

  /external/syslinux/com32/mboot/
mboot.h 69 bool aout; member in struct:my_options
  /frameworks/rs/tests/cpp_api/cpp-globalguard/
compute.cpp 27 sp<Allocation> aout; variable
57 aout = Allocation::createTyped(rs, t);
68 sc->forEach_multiply(ain, aout);
70 aout->copy1DRangeTo(0, numElems, buf);
  /frameworks/rs/tests/cpp_api/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/cpp_api/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/cpp_api/cppbasic/
compute.cpp 32 sp<Allocation> aout = Allocation::createTyped(rs, t); local
33 printf("Allocation %p %p\n", ain.get(), aout.get());
63 sc->forEach_root(ain, aout);
  /frameworks/rs/tests/cpp_api/cppbasic-getpointer/
compute.cpp 36 sp<Allocation> aout = Allocation::createTyped(rs, t, RS_ALLOCATION_USAGE_SCRIPT | RS_ALLOCATION_USAGE_SHARED); local
37 printf("Allocation %p %p\n", ain.get(), aout.get());
42 uint32_t *output = (uint32_t*)aout->getPointer(&outputStride);
60 aout->syncAll(RS_ALLOCATION_USAGE_SHARED);
65 sc->forEach_copyAndNot(ain, aout);
71 aout->syncAll(RS_ALLOCATION_USAGE_SCRIPT);
  /frameworks/rs/tests/cpp_api/cppbasic-shared/
compute.cpp 32 sp<Allocation> aout = Allocation::createTyped(rs, t); local
33 printf("Allocation %p %p\n", ain.get(), aout.get());
63 sc->forEach_root(ain, aout);
  /frameworks/rs/tests/cpp_api/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();
  /frameworks/rs/tests/java_api/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);
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
YuvTest.java 99 Allocation aout = makeOutput(); local
117 syuv.forEach(aout);
123 mVerify.invoke_verify(aref, aout, ay);
143 Allocation aout = makeOutput(); local
167 syuv.forEach(aout);
168 mVerify.invoke_verify(aref, aout, ay);
171 script.forEach_cvt(aout);
172 mVerify.invoke_verify(aref, aout, ay);
178 aout.destroy();
194 Allocation aout = makeOutput() local
246 Allocation aout = makeOutput_f4(); local
293 Allocation aout = makeOutput_f4(); local
    [all...]
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup.cpp 153 Allocation *aout = nullptr; local
175 aout = n->mOutputs[ct3]->mAlloc.get();
182 if (aout == nullptr) {
185 aout = mSG->mOutputs[ct3]->mAlloc.get();
192 rsAssert((k->mHasKernelOutput == (aout != nullptr)) &&
197 outs.push_back(aout);
rsCpuCore.h 89 Allocation *aout[RS_KERNEL_INPUT_LIMIT]; member in struct:android::renderscript::MTLaunchStructForEach
167 void launchForEach(const Allocation **ains, uint32_t inLen, Allocation *aout,
171 void launchReduce(const Allocation ** ains, uint32_t inLen, Allocation *aout,
263 void launchReduceSerial(const Allocation ** ains, uint32_t inLen, Allocation *aout,
265 void launchReduceParallel(const Allocation ** ains, uint32_t inLen, Allocation *aout,
  /frameworks/rs/
rsScriptGroup.cpp 316 Allocation *aout = NULL; local
333 aout = n->mOutputs[ct3]->mAlloc.get();
334 //ALOGE(" link out %p", aout);
339 aout = mOutputs[ct3]->mAlloc.get();
340 //ALOGE(" io out %p", aout);
345 n->mScript->runForEach(rsc, k->mSlot, NULL, 0, aout, NULL, 0);
351 aout, NULL, 0);
  /cts/tests/tests/rscpp/src/android/cts/rscpp/
RSYuvTest.java 85 Allocation aout = makeOutput(); local
103 syuv.forEach(aout);
109 mVerify.invoke_verify(aref, aout, ay);
118 Allocation aout = makeOutput(); local
141 syuv.forEach(aout);
148 mVerify.invoke_verify(aref, aout, ay);
157 Allocation aout = makeOutput(); local
178 syuv.forEach(aout);
185 mVerify.invoke_verify(aref, aout, ay);
  /external/syslinux/gpxe/src/config/
config.c 167 REQUIRE_OBJECT ( aout ); variable
  /frameworks/base/libs/hwui/
FontRenderer.cpp 703 RSC::sp<RSC::Allocation> aout = RSC::Allocation::createTyped( local
709 mRsScript->forEach(aout);
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /external/adhd/cras/src/server/
cras_alsa_io.c 671 struct alsa_output_node *aout; local
676 aout = get_active_output(aio);
680 aout ? aout->mixer_output : NULL);
693 struct alsa_output_node *aout; local
707 aout = get_active_output(aio);
708 if (aout)
709 volume = cras_iodev_adjust_node_volume(&aout->base, volume);
719 aout ? aout->mixer_output : NULL)
827 struct alsa_output_node *aout; local
1283 struct alsa_output_node *aout = NULL; local
1601 struct alsa_output_node *aout; local
    [all...]
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
ScriptGroup.java 559 Allocation aout = null; local
575 aout = nodeOutput.mAllocation;
581 aout = sgOutput.mAllocation;
585 kernel.mScript.forEach(kernel.mSlot, ain, aout, null);
    [all...]
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/27/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/20/
android.jar 

Completed in 251 milliseconds

1 2