/frameworks/rs/support/java/src/androidx/renderscript/ |
D | Allocation.java | 542 copy1DRangeToUnchecked(0, mType.getX(), data); in getByteBuffer() 1993 private void copy1DRangeToUnchecked(int off, int count, Object array, in copy1DRangeToUnchecked() method in Allocation 2028 public void copy1DRangeToUnchecked(int off, int count, Object array) { in copy1DRangeToUnchecked() method in Allocation 2029 copy1DRangeToUnchecked(off, count, array, in copy1DRangeToUnchecked() 2056 public void copy1DRangeToUnchecked(int off, int count, int[] d) { in copy1DRangeToUnchecked() method in Allocation 2057 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_32, d.length); in copy1DRangeToUnchecked() 2082 public void copy1DRangeToUnchecked(int off, int count, short[] d) { in copy1DRangeToUnchecked() method in Allocation 2083 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_16, d.length); in copy1DRangeToUnchecked() 2108 public void copy1DRangeToUnchecked(int off, int count, byte[] d) { in copy1DRangeToUnchecked() method in Allocation 2109 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_8, d.length); in copy1DRangeToUnchecked() [all …]
|
/frameworks/base/rs/java/android/renderscript/ |
D | Allocation.java | 2091 private void copy1DRangeToUnchecked(int off, int count, Object array, in copy1DRangeToUnchecked() method in Allocation 2131 public void copy1DRangeToUnchecked(int off, int count, Object array) { in copy1DRangeToUnchecked() method in Allocation 2132 copy1DRangeToUnchecked(off, count, array, in copy1DRangeToUnchecked() 2159 public void copy1DRangeToUnchecked(int off, int count, int[] d) { in copy1DRangeToUnchecked() method in Allocation 2160 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_32, d.length); in copy1DRangeToUnchecked() 2185 public void copy1DRangeToUnchecked(int off, int count, short[] d) { in copy1DRangeToUnchecked() method in Allocation 2186 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_16, d.length); in copy1DRangeToUnchecked() 2211 public void copy1DRangeToUnchecked(int off, int count, byte[] d) { in copy1DRangeToUnchecked() method in Allocation 2212 copy1DRangeToUnchecked(off, count, (Object)d, Element.DataType.SIGNED_8, d.length); in copy1DRangeToUnchecked() 2237 public void copy1DRangeToUnchecked(int off, int count, float[] d) { in copy1DRangeToUnchecked() method in Allocation [all …]
|
/frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/ |
D | UT_alloc_copy.java | 469 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Byte() 511 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Short() 553 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Int() 595 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Float() 637 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Long()
|
D | UT_alloc_copyPadded.java | 1122 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Byte3() 1165 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Short3() 1208 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Int3() 1251 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Float3() 1294 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Long3()
|
/frameworks/rs/tests/java_api/RSTest_CompatLibLegacy/src/com/android/rs/test/ |
D | UT_alloc_copy.java | 467 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Byte() 509 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Short() 551 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Int() 593 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Float() 635 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Long()
|
D | UT_alloc_copyPadded.java | 1121 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Byte3() 1164 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Short3() 1207 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Int3() 1250 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Float3() 1293 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Long3()
|
/frameworks/rs/tests/java_api/RSUnitTests/supportlibsrc_gen/com/android/rs/unittest/ |
D | UT_alloc_copy.java | 471 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Byte() 513 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Short() 555 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Int() 597 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Float() 639 alloc.copy1DRangeToUnchecked(offset, count, outArray); in allocation_copy1DRangeToUnchecked_Long()
|
D | UT_alloc_copyPadded.java | 1124 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Byte3() 1167 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Short3() 1210 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Int3() 1253 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Float3() 1296 alloc.copy1DRangeToUnchecked(offset, count, outArray); in testAllocation_copy1DRangeToUnchecked_Long3()
|
/frameworks/base/non-updatable-api/ |
D | current.txt | 39759 method public void copy1DRangeToUnchecked(int, int, Object); 39760 method public void copy1DRangeToUnchecked(int, int, int[]); 39761 method public void copy1DRangeToUnchecked(int, int, short[]); 39762 method public void copy1DRangeToUnchecked(int, int, byte[]); 39763 method public void copy1DRangeToUnchecked(int, int, float[]);
|
/frameworks/base/api/ |
D | current.txt | 39903 method public void copy1DRangeToUnchecked(int, int, Object); 39904 method public void copy1DRangeToUnchecked(int, int, int[]); 39905 method public void copy1DRangeToUnchecked(int, int, short[]); 39906 method public void copy1DRangeToUnchecked(int, int, byte[]); 39907 method public void copy1DRangeToUnchecked(int, int, float[]);
|
/frameworks/base/config/ |
D | hiddenapi-greylist-max-o.txt | 59287 Landroid/renderscript/Allocation;->copy1DRangeToUnchecked(IILjava/lang/Object;Landroid/renderscript…
|