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

1 2

  /frameworks/rs/tests/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/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/java/tests/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/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-getpointer/
compute.cpp 38 sp<Allocation> ain = Allocation::createTyped(rs, t, RS_ALLOCATION_USAGE_SCRIPT | RS_ALLOCATION_USAGE_SHARED); local
40 printf("Allocation %p %p\n", ain.get(), aout.get());
44 uint32_t *input = (uint32_t*)ain->getPointer(&inputStride);
62 ain->syncAll(RS_ALLOCATION_USAGE_SHARED);
68 sc->forEach_copyAndNot(ain, aout);
73 ain->syncAll(RS_ALLOCATION_USAGE_SCRIPT);
  /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);
  /frameworks/rs/tests/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/cpu_ref/
rsCpuScriptGroup.cpp 154 Allocation *ain = nullptr; local
161 ain = n->mInputs[ct3]->mAlloc.get();
165 if (ain == nullptr) {
168 ain = mSG->mInputs[ct3]->mAlloc.get();
195 (k->mHasKernelInput == (ain != nullptr)));
197 ins.add(ain);
rsCpuScript.cpp 525 const Allocation* ain = ains[index]; local
528 if (ain != nullptr &&
529 (const uint8_t *)ain->mHal.drvState.lod[0].mallocPtr == nullptr) {
  /frameworks/rs/
rsScriptGroup.cpp 335 Allocation *ain = NULL; local
340 ain = n->mInputs[ct3]->mAlloc.get();
341 //ALOGE(" link in %p", ain);
346 ain = mInputs[ct3]->mAlloc.get();
347 //ALOGE(" io in %p", ain);
364 if (ain == NULL) {
368 const Allocation *ains[1] = {ain};
  /frameworks/base/libs/hwui/
FontRenderer.cpp 714 RSC::sp<RSC::Allocation> ain = RSC::Allocation::createTyped(mRs, t, local
724 mRsScript->setInput(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);
82 Allocation ain = Allocation.createSized(mRS, Element.I8_2(mRS), 1); local
86 ain.copyFrom(new byte[]{ (byte) 127, (byte) 3 });
87 script.forEach_clear_input_char2(ain, tmp);
88 script.invoke_verify_input_char2(ain);
95 Allocation ain = Allocation.createSized(mRS, Element.I8_3(mRS), 1); local
99 ain.copyFrom(new byte[]{ (byte) 127, (byte) 3, (byte) 4, 0 })
108 Allocation ain = Allocation.createSized(mRS, Element.I8_4(mRS), 1); local
121 Allocation ain = Allocation.createSized(mRS, Element.F64(mRS), 1); local
134 Allocation ain = Allocation.createSized(mRS, Element.F64_2(mRS), 1); local
147 Allocation ain = Allocation.createSized(mRS, Element.F64_3(mRS), 1); local
160 Allocation ain = Allocation.createSized(mRS, Element.F64_4(mRS), 1); local
173 Allocation ain = Allocation.createSized(mRS, Element.F32(mRS), 1); local
186 Allocation ain = Allocation.createSized(mRS, Element.F32_2(mRS), 1); local
199 Allocation ain = Allocation.createSized(mRS, Element.F32_3(mRS), 1); local
212 Allocation ain = Allocation.createSized(mRS, Element.F32_4(mRS), 1); local
225 Allocation ain = Allocation.createSized(mRS, Element.I32(mRS), 1); local
238 Allocation ain = Allocation.createSized(mRS, Element.I32_2(mRS), 1); local
251 Allocation ain = Allocation.createSized(mRS, Element.I32_3(mRS), 1); local
264 Allocation ain = Allocation.createSized(mRS, Element.I32_4(mRS), 1); local
277 Allocation ain = Allocation.createSized(mRS, Element.I64(mRS), 1); local
290 Allocation ain = Allocation.createSized(mRS, Element.I64_2(mRS), 1); local
303 Allocation ain = Allocation.createSized(mRS, Element.I64_3(mRS), 1); local
316 Allocation ain = Allocation.createSized(mRS, Element.I64_4(mRS), 1); local
329 Allocation ain = Allocation.createSized(mRS, Element.I16(mRS), 1); local
342 Allocation ain = Allocation.createSized(mRS, Element.I16_2(mRS), 1); local
355 Allocation ain = Allocation.createSized(mRS, Element.I16_3(mRS), 1); local
368 Allocation ain = Allocation.createSized(mRS, Element.I16_4(mRS), 1); local
381 Allocation ain = Allocation.createSized(mRS, Element.U8(mRS), 1); local
394 Allocation ain = Allocation.createSized(mRS, Element.U8_2(mRS), 1); local
407 Allocation ain = Allocation.createSized(mRS, Element.U8_3(mRS), 1); local
420 Allocation ain = Allocation.createSized(mRS, Element.U8_4(mRS), 1); local
433 Allocation ain = Allocation.createSized(mRS, Element.U32(mRS), 1); local
446 Allocation ain = Allocation.createSized(mRS, Element.U32_2(mRS), 1); local
459 Allocation ain = Allocation.createSized(mRS, Element.U32_3(mRS), 1); local
472 Allocation ain = Allocation.createSized(mRS, Element.U32_4(mRS), 1); local
485 Allocation ain = Allocation.createSized(mRS, Element.U64(mRS), 1); local
498 Allocation ain = Allocation.createSized(mRS, Element.U64_2(mRS), 1); local
511 Allocation ain = Allocation.createSized(mRS, Element.U64_3(mRS), 1); local
524 Allocation ain = Allocation.createSized(mRS, Element.U64_4(mRS), 1); local
537 Allocation ain = Allocation.createSized(mRS, Element.U16(mRS), 1); local
550 Allocation ain = Allocation.createSized(mRS, Element.U16_2(mRS), 1); local
563 Allocation ain = Allocation.createSized(mRS, Element.U16_3(mRS), 1); local
576 Allocation ain = Allocation.createSized(mRS, Element.U16_4(mRS), 1); local
    [all...]
  /prebuilts/sdk/renderscript/lib/
javalib.jar 
  /frameworks/support/v8/renderscript/java/src/android/support/v8/renderscript/
ScriptGroup.java 555 Allocation ain = null; local
560 ain = nodeInput.mAllocation;
566 ain = sgInput.mAllocation;
582 kernel.mScript.forEach(kernel.mSlot, ain, aout, null);
    [all...]
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/20/
android.jar 
  /prebuilts/sdk/19/
android.jar 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/18/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/tools/common/m2/repository/biz/aQute/bnd/1.50.0/
bnd-1.50.0.jar 
  /prebuilts/sdk/14/
android.jar 

Completed in 570 milliseconds

1 2