Home
last modified time | relevance | path

Searched refs:dstPos (Results 1 – 3 of 3) sorted by relevance

/aosp12/art/runtime/native/
H A Djava_lang_System.cc51 jint dstPos, jint length) { in System_arraycopy() argument
83 UNLIKELY(dstPos > dstArray->GetLength() - count)) { in System_arraycopy()
192 javaDst, dstPos, count); in System_arraycopyCharUnchecked()
198 javaDst, dstPos, count); in System_arraycopyByteUnchecked()
204 javaDst, dstPos, count); in System_arraycopyShortUnchecked()
210 javaDst, dstPos, count); in System_arraycopyIntUnchecked()
216 javaDst, dstPos, count); in System_arraycopyLongUnchecked()
222 javaDst, dstPos, count); in System_arraycopyFloatUnchecked()
228 javaDst, dstPos, count); in System_arraycopyDoubleUnchecked()
236 jint dstPos, in System_arraycopyBooleanUnchecked() argument
[all …]
/aosp12/art/test/011-array-copy/src/
H A DMain.java82 static void makeCopies(int srcPos, int dstPos, int length) { in makeCopies() argument
95 System.arraycopy(byteArray, srcPos, byteArray, dstPos, length); in makeCopies()
96 System.arraycopy(shortArray, srcPos, shortArray, dstPos, length); in makeCopies()
97 System.arraycopy(intArray, srcPos, intArray, dstPos, length); in makeCopies()
98 System.arraycopy(longArray, srcPos, longArray, dstPos, length); in makeCopies()
99 System.arraycopy(charArray, srcPos, charArray, dstPos, length); in makeCopies()
121 System.out.println("copy: " + srcPos + "," + dstPos + "," + length + in makeCopies()
/aosp12/frameworks/base/core/java/android/net/
H A DNetworkStatsHistory.java459 final int dstPos = index + 1; in insertBucket() local
462 System.arraycopy(bucketStart, index, bucketStart, dstPos, length); in insertBucket()
463 if (activeTime != null) System.arraycopy(activeTime, index, activeTime, dstPos, length); in insertBucket()
464 if (rxBytes != null) System.arraycopy(rxBytes, index, rxBytes, dstPos, length); in insertBucket()
465 if (rxPackets != null) System.arraycopy(rxPackets, index, rxPackets, dstPos, length); in insertBucket()
466 if (txBytes != null) System.arraycopy(txBytes, index, txBytes, dstPos, length); in insertBucket()
467 if (txPackets != null) System.arraycopy(txPackets, index, txPackets, dstPos, length); in insertBucket()
468 if (operations != null) System.arraycopy(operations, index, operations, dstPos, length); in insertBucket()