HomeSort by relevance Sort by last modified time
    Searched refs:mInAllocation (Results 1 - 18 of 18) sorted by null

  /cts/tests/tests/renderscript/src/android/renderscript/cts/
AllocationCopy2DRangeTest.java 25 private Allocation mInAllocation;
45 mInAllocation = Allocation.createTyped(mRS, typeBuilder.create());
46 mOutAllocation = Allocation.createTyped(mRS, mInAllocation.getType());
47 mInAllocation.copy2DRangeFrom(0, 0, width, height, inArray);
51 mScript.set_mIn(mInAllocation);
59 mInAllocation.destroy();
SendToClient.java 26 private Allocation mInAllocation;
32 if (mInAllocation != null) {
33 mInAllocation.destroy();
65 mInAllocation = Allocation.createSized(mRS, Element.I32_4(mRS), 1);
66 mInAllocation.copyFrom(inArray);
70 mScript.forEach_root(mInAllocation);
  /frameworks/rs/tests/lldb/java/BranchingFunCalls/src/com/android/rs/branchingfuncalls/
MainActivity.java 25 private Allocation mInAllocation;
46 mInAllocation = Allocation.createSized(mRS, e, mAllocSize);
59 mInAllocation.copy1DRangeFrom(0, mAllocSize, init);
60 mScript.forEach_simple_kernel(mInAllocation, mOutAllocation);
  /frameworks/rs/tests/lldb/java/DebugWaitAttach/src/com/android/rs/waitattachdebug/
MainActivity.java 31 private Allocation mInAllocation;
58 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
67 mScript.forEach_simple_kernel(mInAllocation, mOutAllocation);
69 mScript.forEach_other_kernel(mInAllocation, mOutAllocation);
  /frameworks/rs/tests/lldb/java/MultipleRSFiles/src/com/android/rs/multiplersfiles/
MainActivity.java 31 private Allocation mInAllocation;
59 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
69 mFirstScript.forEach_first_kernel(mInAllocation, mOutAllocation);
71 mSecondScript.forEach_second_kernel(mInAllocation, mOutAllocation);
  /frameworks/rs/tests/lldb/java/NoDebugWaitAttach/src/com/android/rs/waitattachnodebug/
MainActivity.java 31 private Allocation mInAllocation;
58 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
67 mScript.forEach_simple_kernel(mInAllocation, mOutAllocation);
  /development/samples/RenderScript/HelloCompute/src/com/example/android/rs/hellocompute/
HelloCompute.java 32 private Allocation mInAllocation;
58 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn,
67 mScript.forEach_root(mInAllocation, mOutAllocation);
  /frameworks/rs/tests/lldb/java/KernelVariables/src/com/android/rs/kernelvariables/
MainActivity.java 32 private Allocation mInAllocation;
59 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
81 mScript.set_allocation_2D_global(mInAllocation);
107 mScript.forEach_kernel(mInAllocation, mOutAllocation);
  /frameworks/rs/tests/lldb/java/InfiniteLoop/src/com/android/rs/infiniteloop/
MainActivity.java 42 private Allocation mInAllocation;
97 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
131 mScript.forEach_simple_kernel(mInAllocation, mOutAllocations[index]);
  /developers/build/prebuilts/gradle/BasicRenderScript/Application/src/main/java/com/example/android/basicrenderscript/
MainActivity.java 41 private Allocation mInAllocation;
101 mInAllocation = Allocation.createFromBitmap(rs, mBitmapIn);
130 mScript.forEach_saturation(mInAllocation, mOutAllocations[index]);
  /developers/samples/android/renderScript/BasicRenderScript/Application/src/main/java/com/example/android/basicrenderscript/
MainActivity.java 41 private Allocation mInAllocation;
101 mInAllocation = Allocation.createFromBitmap(rs, mBitmapIn);
130 mScript.forEach_saturation(mInAllocation, mOutAllocations[index]);
  /development/samples/browseable/BasicRenderScript/src/com.example.android.basicrenderscript/
MainActivity.java 41 private Allocation mInAllocation;
105 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
137 mScript.forEach_saturation(mInAllocation, mOutAllocations[index]);
  /developers/build/prebuilts/gradle/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
MainActivity.java 51 private Allocation mInAllocation;
151 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
273 performFilter(mInAllocation, mOutAllocations[index], mBitmapsOut[index], values[0]);
  /developers/samples/android/renderScript/RenderScriptIntrinsic/Application/src/main/java/com/example/android/renderscriptintrinsic/
MainActivity.java 51 private Allocation mInAllocation;
151 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
273 performFilter(mInAllocation, mOutAllocations[index], mBitmapsOut[index], values[0]);
  /development/samples/browseable/RenderScriptIntrinsic/src/com.example.android.renderscriptintrinsic/
MainActivity.java 44 private Allocation mInAllocation;
155 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
289 performFilter(mInAllocation, mOutAllocations[index], mBitmapsOut[index], values[0]);
  /frameworks/rs/tests/lldb/cpp/Allocations/
Allocations.cpp 340 sp<Allocation> mInAllocation = Allocation::createTyped(mRS, typeRGBA_888Builder.create());
347 mInAllocation->copy1DRangeFrom(0, image_area, zero_buffer);
355 mScript->forEach_swizzle_kernel(mInAllocation, mOutAllocation);
382 mInAllocation = mUShortAllocation; // Host side assignment
385 mScript->forEach_square_kernel(mInAllocation, mUIntAllocation);
  /frameworks/rs/tests/lldb/java/Allocations/src/com/android/rs/allocations/
MainActivity.java 27 private Allocation mInAllocation; // script input
424 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn);
434 mScript.forEach_swizzle_kernel(mInAllocation, mOutAllocation);
480 mInAllocation = mUShortAllocation; // Host side assignment
483 mScript.forEach_square_kernel(mInAllocation, mUIntAllocation);
  /frameworks/rs/tests/lldb/jni/Allocations/jniallocations/
jniallocations.cpp 350 sp<Allocation> mInAllocation = Allocation::createTyped(mRS, typeRGBA_888Builder.create());
357 mInAllocation->copy1DRangeFrom(0, image_area, zero_buffer);
365 mScript->forEach_swizzle_kernel(mInAllocation, mOutAllocation);
392 mInAllocation = mUShortAllocation; // Host side assignment
395 mScript->forEach_square_kernel(mInAllocation, mUIntAllocation);

Completed in 1121 milliseconds