/frameworks/rs/tests/lldb/java/BranchingFunCalls/src/com/android/rs/branchingfuncalls/ |
D | MainActivity.java | 25 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/ |
D | MainActivity.java | 31 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/ |
D | MainActivity.java | 31 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/ |
D | MainActivity.java | 31 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/ |
D | MainActivity.java | 32 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/ |
D | MainActivity.java | 42 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/ |
D | Allocations.cpp | 340 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/ |
D | jniallocations.cpp | 350 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/ |
D | MainActivity.java | 27 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()
|