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

1 2

  /frameworks/rs/tests/cpp_api/cpp-globalguard/
compute.cpp 26 sp<Allocation> ain; variable
56 ain = Allocation::createTyped(rs, t);
66 ain->copy1DRangeFrom(0, numElems, buf);
68 sc->forEach_multiply(ain, aout);
  /frameworks/rs/tests/cpp_api/cppallocation/
compute.cpp 33 sp<Allocation> ain = Allocation::createTyped(rs, t); local
43 ain->copy1DRangeFrom(0, numElems, buf);
45 sc->forEach_multiply(ain, aout);
61 ain.clear();
  /frameworks/rs/tests/cpp_api/cppstrided/
compute.cpp 35 sp<Allocation> ain = Allocation::createTyped(rs, t); local
52 ain->copy2DStridedFrom(buf, stride * sizeof(uint32_t));
54 sc->forEach_multiply(ain, aout);
72 ain.clear();
  /frameworks/rs/tests/cpp_api/cppbasic/
compute.cpp 31 sp<Allocation> ain = Allocation::createTyped(rs, t); local
33 printf("Allocation %p %p\n", ain.get(), aout.get());
60 ain->copy1DRangeFrom(0, t->getCount(), buf);
63 sc->forEach_root(ain, aout);
  /frameworks/rs/tests/cpp_api/cppbasic-getpointer/
compute.cpp 35 sp<Allocation> ain = Allocation::createTyped(rs, t, RS_ALLOCATION_USAGE_SCRIPT | RS_ALLOCATION_USAGE_SHARED); local
37 printf("Allocation %p %p\n", ain.get(), aout.get());
41 uint32_t *input = (uint32_t*)ain->getPointer(&inputStride);
59 ain->syncAll(RS_ALLOCATION_USAGE_SHARED);
65 sc->forEach_copyAndNot(ain, aout);
70 ain->syncAll(RS_ALLOCATION_USAGE_SCRIPT);
  /frameworks/rs/tests/cpp_api/cppbasic-shared/
compute.cpp 31 sp<Allocation> ain = Allocation::createTyped(rs, t); local
33 printf("Allocation %p %p\n", ain.get(), aout.get());
60 ain->copy1DRangeFrom(0, t->getCount(), buf);
63 sc->forEach_root(ain, aout);
  /frameworks/rs/tests/cpp_api/latency/
latency.cpp 70 sp<Allocation> ain = Allocation::createTyped(rs, t); local
80 sc->forEach_root(ain, aout);
94 ain->copy1DFrom(buf);
95 sc->forEach_root(ain, aout);
109 ain.clear();
  /frameworks/rs/tests/java_api/LatencyBenchmark/src/com/example/android/rs/computebench/
Benchmark.java 25 private Allocation ain; field in class:Benchmark
31 ain = Allocation.createSized(rs, Element.U32(mRS), 10000);
42 mScript.forEach_root(ain, aout);
49 mScript.set_in(ain);
  /frameworks/rs/cpu_ref/
rsCpuScriptGroup.cpp 152 Allocation *ain = nullptr; local
159 ain = n->mInputs[ct3]->mAlloc.get();
163 if (ain == nullptr) {
166 ain = mSG->mInputs[ct3]->mAlloc.get();
193 (k->mHasKernelInput == (ain != nullptr)));
195 ins.push_back(ain);
rsCpuIntrinsicBLAS.cpp 30 const Allocation ** ain,
63 static void initABC(const Allocation ** ain,
72 if (ain[0]) {
73 *A = ain[0]->mHal.drvState.lod[0].mallocPtr;
74 *lda = (int)(ain[0]->mHal.drvState.lod[0].stride/size);
76 if (ain[1]) {
77 *B = ain[1]->mHal.drvState.lod[0].mallocPtr;
78 *ldb = (int)(ain[1]->mHal.drvState.lod[0].stride/size);
80 if (ain[2]) {
81 *C = ain[2]->mHal.drvState.lod[0].mallocPtr
156 const Allocation *ain[RS_KERNEL_INPUT_LIMIT]; local
    [all...]
  /frameworks/rs/
rsScriptGroup.cpp 315 Allocation *ain = NULL; local
320 ain = n->mInputs[ct3]->mAlloc.get();
321 //ALOGE(" link in %p", ain);
326 ain = mInputs[ct3]->mAlloc.get();
327 //ALOGE(" io in %p", ain);
344 if (ain == NULL) {
348 const Allocation *ains[1] = {ain};
  /cts/tests/tests/renderscript/src/android/renderscript/cts/
KernelInputTest.java 69 Allocation ain = Allocation.createSized(mRS, Element.I8(mRS), 1); local
73 ain.copyFrom(new byte[]{ (byte) 6 });
74 script.forEach_clear_input_char(ain, tmp);
75 script.invoke_verify_input_char(ain);
79 ain.destroy();
86 Allocation ain = Allocation.createSized(mRS, Element.I8_2(mRS), 1); local
90 ain.copyFrom(new byte[]{ (byte) 127, (byte) 3 });
91 script.forEach_clear_input_char2(ain, tmp);
92 script.invoke_verify_input_char2(ain);
96 ain.destroy()
103 Allocation ain = Allocation.createSized(mRS, Element.I8_3(mRS), 1); local
120 Allocation ain = Allocation.createSized(mRS, Element.I8_4(mRS), 1); local
137 Allocation ain = Allocation.createSized(mRS, Element.F64(mRS), 1); local
154 Allocation ain = Allocation.createSized(mRS, Element.F64_2(mRS), 1); local
171 Allocation ain = Allocation.createSized(mRS, Element.F64_3(mRS), 1); local
188 Allocation ain = Allocation.createSized(mRS, Element.F64_4(mRS), 1); local
205 Allocation ain = Allocation.createSized(mRS, Element.F32(mRS), 1); local
222 Allocation ain = Allocation.createSized(mRS, Element.F32_2(mRS), 1); local
239 Allocation ain = Allocation.createSized(mRS, Element.F32_3(mRS), 1); local
256 Allocation ain = Allocation.createSized(mRS, Element.F32_4(mRS), 1); local
273 Allocation ain = Allocation.createSized(mRS, Element.I32(mRS), 1); local
290 Allocation ain = Allocation.createSized(mRS, Element.I32_2(mRS), 1); local
307 Allocation ain = Allocation.createSized(mRS, Element.I32_3(mRS), 1); local
324 Allocation ain = Allocation.createSized(mRS, Element.I32_4(mRS), 1); local
341 Allocation ain = Allocation.createSized(mRS, Element.I64(mRS), 1); local
358 Allocation ain = Allocation.createSized(mRS, Element.I64_2(mRS), 1); local
375 Allocation ain = Allocation.createSized(mRS, Element.I64_3(mRS), 1); local
392 Allocation ain = Allocation.createSized(mRS, Element.I64_4(mRS), 1); local
409 Allocation ain = Allocation.createSized(mRS, Element.I16(mRS), 1); local
426 Allocation ain = Allocation.createSized(mRS, Element.I16_2(mRS), 1); local
443 Allocation ain = Allocation.createSized(mRS, Element.I16_3(mRS), 1); local
460 Allocation ain = Allocation.createSized(mRS, Element.I16_4(mRS), 1); local
477 Allocation ain = Allocation.createSized(mRS, Element.U8(mRS), 1); local
494 Allocation ain = Allocation.createSized(mRS, Element.U8_2(mRS), 1); local
511 Allocation ain = Allocation.createSized(mRS, Element.U8_3(mRS), 1); local
528 Allocation ain = Allocation.createSized(mRS, Element.U8_4(mRS), 1); local
545 Allocation ain = Allocation.createSized(mRS, Element.U32(mRS), 1); local
562 Allocation ain = Allocation.createSized(mRS, Element.U32_2(mRS), 1); local
579 Allocation ain = Allocation.createSized(mRS, Element.U32_3(mRS), 1); local
596 Allocation ain = Allocation.createSized(mRS, Element.U32_4(mRS), 1); local
613 Allocation ain = Allocation.createSized(mRS, Element.U64(mRS), 1); local
630 Allocation ain = Allocation.createSized(mRS, Element.U64_2(mRS), 1); local
647 Allocation ain = Allocation.createSized(mRS, Element.U64_3(mRS), 1); local
664 Allocation ain = Allocation.createSized(mRS, Element.U64_4(mRS), 1); local
681 Allocation ain = Allocation.createSized(mRS, Element.U16(mRS), 1); local
698 Allocation ain = Allocation.createSized(mRS, Element.U16_2(mRS), 1); local
715 Allocation ain = Allocation.createSized(mRS, Element.U16_3(mRS), 1); local
732 Allocation ain = Allocation.createSized(mRS, Element.U16_4(mRS), 1); local
    [all...]
  /frameworks/base/libs/hwui/
FontRenderer.cpp 703 RSC::sp<RSC::Allocation> ain = RSC::Allocation::createTyped(mRs, t, local
713 mRsScript->setInput(ain);
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /frameworks/rs/support/java/src/android/support/v8/renderscript/
ScriptGroup.java 558 Allocation ain = null; local
563 ain = nodeInput.mAllocation;
569 ain = sgInput.mAllocation;
585 kernel.mScript.forEach(kernel.mSlot, ain, aout, null);
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /external/guice/lib/build/
bnd-0.0.384.jar 

Completed in 325 milliseconds

1 2