Home
last modified time | relevance | path

Searched refs:mInAllocation (Results 1 – 9 of 9) sorted by relevance

/frameworks/rs/tests/lldb/java/BranchingFunCalls/src/com/android/rs/branchingfuncalls/
DMainActivity.java25 private Allocation mInAllocation; field in MainActivity
46 mInAllocation = Allocation.createSized(mRS, e, mAllocSize); in createScript()
59 mInAllocation.copy1DRangeFrom(0, mAllocSize, init); in runScript()
60 mScript.forEach_simple_kernel(mInAllocation, mOutAllocation); in runScript()
/frameworks/rs/tests/lldb/java/DebugWaitAttach/src/com/android/rs/waitattachdebug/
DMainActivity.java31 private Allocation mInAllocation; field in MainActivity
58 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in createScript()
67 mScript.forEach_simple_kernel(mInAllocation, mOutAllocation); in updateImage()
69 mScript.forEach_other_kernel(mInAllocation, mOutAllocation); in updateImage()
/frameworks/rs/tests/lldb/java/MultipleRSFiles/src/com/android/rs/multiplersfiles/
DMainActivity.java31 private Allocation mInAllocation; field in MainActivity
59 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in createScript()
69 mFirstScript.forEach_first_kernel(mInAllocation, mOutAllocation); in updateImage()
71 mSecondScript.forEach_second_kernel(mInAllocation, mOutAllocation); in updateImage()
/frameworks/rs/tests/lldb/java/NoDebugWaitAttach/src/com/android/rs/waitattachnodebug/
DMainActivity.java31 private Allocation mInAllocation; field in MainActivity
58 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in createScript()
67 mScript.forEach_simple_kernel(mInAllocation, mOutAllocation); in updateImage()
/frameworks/rs/tests/lldb/java/KernelVariables/src/com/android/rs/kernelvariables/
DMainActivity.java32 private Allocation mInAllocation; field in MainActivity
59 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in createScript()
81 mScript.set_allocation_2D_global(mInAllocation); in updateImage()
107 mScript.forEach_kernel(mInAllocation, mOutAllocation); in updateImage()
/frameworks/rs/tests/lldb/java/InfiniteLoop/src/com/android/rs/infiniteloop/
DMainActivity.java42 private Allocation mInAllocation; field in MainActivity
97 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in createScript()
131 mScript.forEach_simple_kernel(mInAllocation, mOutAllocations[index]); in doInBackground()
/frameworks/rs/tests/lldb/cpp/Allocations/
DAllocations.cpp340 sp<Allocation> mInAllocation = Allocation::createTyped(mRS, typeRGBA_888Builder.create()); in main() local
347 mInAllocation->copy1DRangeFrom(0, image_area, zero_buffer); in main()
355 mScript->forEach_swizzle_kernel(mInAllocation, mOutAllocation); in main()
382 mInAllocation = mUShortAllocation; // Host side assignment in main()
385 mScript->forEach_square_kernel(mInAllocation, mUIntAllocation); in main()
/frameworks/rs/tests/lldb/jni/Allocations/jniallocations/
Djniallocations.cpp350 sp<Allocation> mInAllocation = Allocation::createTyped(mRS, typeRGBA_888Builder.create()); in Java_com_android_rs_jniallocations_MainActivity_nativeRS() local
357 mInAllocation->copy1DRangeFrom(0, image_area, zero_buffer); in Java_com_android_rs_jniallocations_MainActivity_nativeRS()
365 mScript->forEach_swizzle_kernel(mInAllocation, mOutAllocation); in Java_com_android_rs_jniallocations_MainActivity_nativeRS()
392 mInAllocation = mUShortAllocation; // Host side assignment in Java_com_android_rs_jniallocations_MainActivity_nativeRS()
395 mScript->forEach_square_kernel(mInAllocation, mUIntAllocation); in Java_com_android_rs_jniallocations_MainActivity_nativeRS()
/frameworks/rs/tests/lldb/java/Allocations/src/com/android/rs/allocations/
DMainActivity.java27 private Allocation mInAllocation; // script input field in MainActivity
424 mInAllocation = Allocation.createFromBitmap(mRS, mBitmapIn); in runScript()
434 mScript.forEach_swizzle_kernel(mInAllocation, mOutAllocation); in runScript()
480 mInAllocation = mUShortAllocation; // Host side assignment in runScript()
483 mScript.forEach_square_kernel(mInAllocation, mUIntAllocation); in runScript()