Searched refs:destOffset (Results 1 – 2 of 2) sorted by relevance
/libcore/ojluni/src/main/java/jdk/internal/misc/ |
D | Unsafe.java | 941 Object destBase, long destOffset, in copyMemory() argument 943 copyMemoryChecks(srcBase, srcOffset, destBase, destOffset, bytes); in copyMemory() 949 copyMemory0(srcBase, srcOffset, destBase, destOffset, bytes); in copyMemory() 972 Object destBase, long destOffset, in copyMemoryChecks() argument 976 checkPrimitivePointer(destBase, destOffset); in copyMemoryChecks() 4158 …ive void copyMemory0(Object srcBase, long srcOffset, Object destBase, long destOffset, long bytes); in copyMemory0() argument
|
/libcore/ojluni/src/main/java/java/util/stream/ |
D | Nodes.java | 671 public void copyInto(T[] dest, int destOffset) { in copyInto() argument 672 System.arraycopy(array, 0, dest, destOffset, curSize); in copyInto() 1353 public void copyInto(int[] dest, int destOffset) { 1354 System.arraycopy(array, 0, dest, destOffset, curSize); 1407 public void copyInto(long[] dest, int destOffset) { 1408 System.arraycopy(array, 0, dest, destOffset, curSize); 1461 public void copyInto(double[] dest, int destOffset) { 1462 System.arraycopy(array, 0, dest, destOffset, curSize);
|