MCPcopy Create free account
hub / github.com/dumbledore/AlbiteREADER / writeInt

Method writeInt

src/gnu/zip/PendingBuffer.java:89–97  ·  view source on GitHub ↗
(int s)

Source from the content-addressed store, hash-verified

87 }
88
89 public final void writeInt(int s)
90 {
91 if (DeflaterConstants.DEBUGGING && start != 0)
92 throw new IllegalStateException();
93 buf[end++] = (byte) s;
94 buf[end++] = (byte) (s >> 8);
95 buf[end++] = (byte) (s >> 16);
96 buf[end++] = (byte) (s >> 24);
97 }
98
99 public final void writeBlock(byte[] block, int offset, int len)
100 {

Callers 2

saveOptionsToRMSMethod · 0.80
saveBookSettingsMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected