MCPcopy
hub / github.com/google/brotli / copyBytes

Method copyBytes

java/org/brotli/dec/Utils.java:67–69  ·  view source on GitHub ↗
(byte[] dst, int target, byte[] src, int start, int end)

Source from the content-addressed store, hash-verified

65 }
66
67 static void copyBytes(byte[] dst, int target, byte[] src, int start, int end) {
68 System.arraycopy(src, start, dst, target, end - start);
69 }
70
71 static void copyBytesWithin(byte[] bytes, int target, int start, int end) {
72 System.arraycopy(bytes, start, bytes, target, end - start);

Callers 4

copyRawBytesMethod · 0.95
writeRingBufferMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected