MCPcopy Create free account
hub / github.com/demoth/jake2 / writeBytes

Method writeBytes

qcommon/src/main/java/jake2/qcommon/sizebuf_t.java:273–275  ·  view source on GitHub ↗
(byte[] data, int length)

Source from the content-addressed store, hash-verified

271 }
272
273 public void writeBytes(byte[] data, int length) {
274 System.arraycopy(data, 0, this.data, GetSpace(length), length);
275 }
276
277 public void writeBytes(byte[] data, int offset, int length) {
278 System.arraycopy(data, offset, this.data, GetSpace(length), length);

Callers 9

writeStringMethod · 0.95
transmitMethod · 0.95
WriteBindingsMethod · 0.80
WriteConfigurationMethod · 0.80
writePropertiesMethod · 0.80
writePropertiesMethod · 0.80
writeArchiveVariablesMethod · 0.80
writeStringMethod · 0.80

Calls 1

GetSpaceMethod · 0.95

Tested by

no test coverage detected