Home
last modified time | relevance | path

Searched refs:copy1DRangeTo (Results 1 – 18 of 18) sorted by relevance

/aosp12/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
H A DGoogLeNet.java216 matC.get(i-1).copy1DRangeTo(0, 1, floatOut); in runTest()
228 matC.get(i-1).copy1DRangeTo(0, 1, byteOut); in runTest()
/aosp12/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
H A DUT_alloc_copy.java72 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Byte()
114 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Short()
156 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Int()
198 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Float()
240 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Long()
H A DUT_alloc_copyPadded.java716 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Byte3()
759 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Short3()
802 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Int3()
845 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Float3()
888 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Long3()
/aosp12/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
H A DUT_alloc_copy.java74 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Byte()
116 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Short()
158 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Int()
200 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Float()
242 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Long()
H A DUT_alloc_copyPadded.java717 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Byte3()
760 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Short3()
803 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Int3()
846 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Float3()
889 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Long3()
/aosp12/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
H A DUT_alloc_copy.java76 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Byte()
118 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Short()
160 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Int()
202 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Float()
244 alloc.copy1DRangeTo(offset, count, outArray); in allocation_copy1DRangeTo_Long()
H A DUT_alloc_copyPadded.java719 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Byte3()
762 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Short3()
805 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Int3()
848 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Float3()
891 alloc.copy1DRangeTo(offset, count, outArray); in testAllocation_copy1DRangeTo_Long3()
/aosp12/frameworks/rs/tests/cpp_api/cpp-globalguard/
H A Dcompute.cpp70 aout->copy1DRangeTo(0, numElems, buf); in main()
/aosp12/frameworks/rs/tests/cpp_api/cppallocation/
H A Dcompute.cpp47 aout->copy1DRangeTo(0, numElems, buf); in main()
/aosp12/frameworks/av/media/libstagefright/filters/
H A DRSFilter.cpp91 mAllocOut->copy1DRangeTo(0, mWidth * mHeight, outBuffer->data()); in processBuffers()
H A DIntrinsicBlurFilter.cpp94 mAllocOut->copy1DRangeTo(0, mWidth * mHeight, outBuffer->data()); in processBuffers()
H A DSaturationFilter.cpp94 mAllocOut->copy1DRangeTo(0, mWidth * mHeight, outBuffer->data()); in processBuffers()
/aosp12/frameworks/rs/support/java/src/androidx/renderscript/
H A DAllocation.java2168 public void copy1DRangeTo(int off, int count, Object array) { in copy1DRangeTo() method in Allocation
2198 public void copy1DRangeTo(int off, int count, int[] d) { in copy1DRangeTo() method in Allocation
2227 public void copy1DRangeTo(int off, int count, short[] d) { in copy1DRangeTo() method in Allocation
2256 public void copy1DRangeTo(int off, int count, byte[] d) { in copy1DRangeTo() method in Allocation
2285 public void copy1DRangeTo(int off, int count, float[] d) { in copy1DRangeTo() method in Allocation
/aosp12/frameworks/base/rs/java/android/renderscript/
H A DAllocation.java2269 public void copy1DRangeTo(int off, int count, Object array) { in copy1DRangeTo() method in Allocation
2299 public void copy1DRangeTo(int off, int count, int[] d) { in copy1DRangeTo() method in Allocation
2328 public void copy1DRangeTo(int off, int count, short[] d) { in copy1DRangeTo() method in Allocation
2357 public void copy1DRangeTo(int off, int count, byte[] d) { in copy1DRangeTo() method in Allocation
2386 public void copy1DRangeTo(int off, int count, float[] d) { in copy1DRangeTo() method in Allocation
/aosp12/frameworks/rs/cpp/
H A DAllocation.cpp241 void Allocation::copy1DRangeTo(uint32_t off, size_t count, void *data) { in copy1DRangeTo() function in Allocation
278 copy1DRangeTo(0, mCurrentCount, data); in copy1DTo()
H A DrsCppStructs.h702 void copy1DRangeTo(uint32_t off, size_t count, void *data);
/aosp12/frameworks/base/tools/aapt2/integration-tests/CommandTests/
H A Dandroid-28.jarMETA-INF/ META-INF/MANIFEST.MF javax/ javax/net/ javax/ ...
/aosp12/frameworks/base/core/api/
H A Dcurrent.txt36088 method @Deprecated public void copy1DRangeTo(int, int, Object);
36089 method @Deprecated public void copy1DRangeTo(int, int, int[]);
36090 method @Deprecated public void copy1DRangeTo(int, int, short[]);
36091 method @Deprecated public void copy1DRangeTo(int, int, byte[]);
36092 method @Deprecated public void copy1DRangeTo(int, int, float[]);