Home
last modified time | relevance | path

Searched refs:targetOffset (Results 1 – 4 of 4) sorted by relevance

/frameworks/opt/gamesdk/third_party/protobuf-3.0.0/java/core/src/main/java/com/google/protobuf/
DByteString.java593 public final void copyTo(byte[] target, int sourceOffset, int targetOffset, in copyTo() argument
596 checkRange(targetOffset, targetOffset + numberToCopy, target.length); 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()
1524 protected void copyToInternal(byte[] target, int sourceOffset, int targetOffset, in copyToInternal() argument
1527 targetOffset, numberToCopy); in copyToInternal()
DUnsafeUtil.java77 byte[] src, long srcOffset, byte[] target, long targetOffset, long length) { in copyMemory() argument
78 UNSAFE.copyMemory(src, srcOffset, target, targetOffset, length); in copyMemory()
DRopeByteString.java344 int targetOffset, int numberToCopy) { in copyToInternal() argument
346 left.copyToInternal(target, sourceOffset, targetOffset, numberToCopy); in copyToInternal()
348 right.copyToInternal(target, sourceOffset - leftLength, targetOffset, in copyToInternal()
352 left.copyToInternal(target, sourceOffset, targetOffset, leftLength); in copyToInternal()
353 right.copyToInternal(target, 0, targetOffset + leftLength, in copyToInternal()
DNioByteString.java108 byte[] target, int sourceOffset, int targetOffset, int numberToCopy) { in copyToInternal() argument
111 slice.get(target, targetOffset, numberToCopy); in copyToInternal()