Home
last modified time | relevance | path

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

/external/protobuf/java/core/src/main/java/com/google/protobuf/
DByteString.java594 int numberToCopy) { in copyTo() argument
595 checkRange(sourceOffset, sourceOffset + numberToCopy, size()); in copyTo()
596 checkRange(targetOffset, targetOffset + numberToCopy, target.length); in copyTo()
597 if (numberToCopy > 0) { in copyTo()
598 copyToInternal(target, sourceOffset, targetOffset, numberToCopy); in copyTo()
609 int targetOffset, int numberToCopy); in copyToInternal() argument
1288 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) { in copyToInternal() argument
1292 System.arraycopy(bytes, sourceOffset, target, targetOffset, numberToCopy); in copyToInternal()
1525 int numberToCopy) { in copyToInternal() argument
1527 targetOffset, numberToCopy); in copyToInternal()
DRopeByteString.java344 int targetOffset, int numberToCopy) { in copyToInternal() argument
345 if (sourceOffset + numberToCopy <= leftLength) { in copyToInternal()
346 left.copyToInternal(target, sourceOffset, targetOffset, numberToCopy); in copyToInternal()
349 numberToCopy); in copyToInternal()
354 numberToCopy - leftLength); in copyToInternal()
DNioByteString.java108 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) { in copyToInternal() argument
111 slice.get(target, targetOffset, numberToCopy); in copyToInternal()