Home
last modified time | relevance | path

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

12

/frameworks/rs/tests/java_api/RsBLAS_Benchmark/src/com/example/android/rs/blasbenchmark/
DGoogLeNet.java216 matC.get(i-1).copy1DRangeTo(0, 1, floatOut); in runTest()
228 matC.get(i-1).copy1DRangeTo(0, 1, byteOut); in runTest()
/frameworks/rs/tests/cpp_api/cppallocation/
Dcompute.cpp47 aout->copy1DRangeTo(0, numElems, buf); in main()
/frameworks/rs/tests/cpp_api/cpp-globalguard/
Dcompute.cpp70 aout->copy1DRangeTo(0, numElems, buf); in main()
/frameworks/av/media/libstagefright/filters/
DRSFilter.cpp91 mAllocOut->copy1DRangeTo(0, mWidth * mHeight, outBuffer->data()); in processBuffers()
DIntrinsicBlurFilter.cpp94 mAllocOut->copy1DRangeTo(0, mWidth * mHeight, outBuffer->data()); in processBuffers()
DSaturationFilter.cpp94 mAllocOut->copy1DRangeTo(0, mWidth * mHeight, outBuffer->data()); in processBuffers()
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/
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()
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()
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/
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()
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()
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
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()
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()
/frameworks/rs/support/java/src/android/support/v8/renderscript/
DAllocation.java2163 public void copy1DRangeTo(int off, int count, Object array) { in copy1DRangeTo() method in Allocation
2193 public void copy1DRangeTo(int off, int count, int[] d) { in copy1DRangeTo() method in Allocation
2222 public void copy1DRangeTo(int off, int count, short[] d) { in copy1DRangeTo() method in Allocation
2251 public void copy1DRangeTo(int off, int count, byte[] d) { in copy1DRangeTo() method in Allocation
2280 public void copy1DRangeTo(int off, int count, float[] d) { in copy1DRangeTo() method in Allocation
/frameworks/base/rs/java/android/renderscript/
DAllocation.java2265 public void copy1DRangeTo(int off, int count, Object array) { in copy1DRangeTo() method in Allocation
2295 public void copy1DRangeTo(int off, int count, int[] d) { in copy1DRangeTo() method in Allocation
2324 public void copy1DRangeTo(int off, int count, short[] d) { in copy1DRangeTo() method in Allocation
2353 public void copy1DRangeTo(int off, int count, byte[] d) { in copy1DRangeTo() method in Allocation
2382 public void copy1DRangeTo(int off, int count, float[] d) { in copy1DRangeTo() method in Allocation
/frameworks/rs/cpp/
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()
DrsCppStructs.h702 void copy1DRangeTo(uint32_t off, size_t count, void *data);
/frameworks/support/api/
D23.0.0.txt9923 method public void copy1DRangeTo(int, int, java.lang.Object);
9924 method public void copy1DRangeTo(int, int, int[]);
9925 method public void copy1DRangeTo(int, int, short[]);
9926 method public void copy1DRangeTo(int, int, byte[]);
9927 method public void copy1DRangeTo(int, int, float[]);
D23.1.1.txt10311 method public void copy1DRangeTo(int, int, java.lang.Object);
10312 method public void copy1DRangeTo(int, int, int[]);
10313 method public void copy1DRangeTo(int, int, short[]);
10314 method public void copy1DRangeTo(int, int, byte[]);
10315 method public void copy1DRangeTo(int, int, float[]);
D23.2.1.txt10842 method public void copy1DRangeTo(int, int, java.lang.Object);
10843 method public void copy1DRangeTo(int, int, int[]);
10844 method public void copy1DRangeTo(int, int, short[]);
10845 method public void copy1DRangeTo(int, int, byte[]);
10846 method public void copy1DRangeTo(int, int, float[]);
D23.2.0.txt10840 method public void copy1DRangeTo(int, int, java.lang.Object);
10841 method public void copy1DRangeTo(int, int, int[]);
10842 method public void copy1DRangeTo(int, int, short[]);
10843 method public void copy1DRangeTo(int, int, byte[]);
10844 method public void copy1DRangeTo(int, int, float[]);
D23.4.0.txt10858 method public void copy1DRangeTo(int, int, java.lang.Object);
10859 method public void copy1DRangeTo(int, int, int[]);
10860 method public void copy1DRangeTo(int, int, short[]);
10861 method public void copy1DRangeTo(int, int, byte[]);
10862 method public void copy1DRangeTo(int, int, float[]);
D23.1.0.txt10342 method public void copy1DRangeTo(int, int, java.lang.Object);
10343 method public void copy1DRangeTo(int, int, int[]);
10344 method public void copy1DRangeTo(int, int, short[]);
10345 method public void copy1DRangeTo(int, int, byte[]);
10346 method public void copy1DRangeTo(int, int, float[]);
D24.0.0.txt11656 method public void copy1DRangeTo(int, int, java.lang.Object);
11657 method public void copy1DRangeTo(int, int, int[]);
11658 method public void copy1DRangeTo(int, int, short[]);
11659 method public void copy1DRangeTo(int, int, byte[]);
11660 method public void copy1DRangeTo(int, int, float[]);
D24.1.0.txt11666 method public void copy1DRangeTo(int, int, java.lang.Object);
11667 method public void copy1DRangeTo(int, int, int[]);
11668 method public void copy1DRangeTo(int, int, short[]);
11669 method public void copy1DRangeTo(int, int, byte[]);
11670 method public void copy1DRangeTo(int, int, float[]);
/frameworks/base/config/
Dhiddenapi-public-dex.txt38137 Landroid/renderscript/Allocation;->copy1DRangeTo(IILjava/lang/Object;)V
38138 Landroid/renderscript/Allocation;->copy1DRangeTo(II[B)V
38139 Landroid/renderscript/Allocation;->copy1DRangeTo(II[F)V
38140 Landroid/renderscript/Allocation;->copy1DRangeTo(II[I)V
38141 Landroid/renderscript/Allocation;->copy1DRangeTo(II[S)V

12