MCPcopy Create free account
hub / github.com/ReadyTalk/avian / rawBlockDataInt

Method rawBlockDataInt

classpath/java/io/ObjectInputStream.java:157–159  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

155 }
156
157 private int rawBlockDataInt() throws IOException {
158 return (rawBlockDataShort() << 16) | rawBlockDataShort();
159 }
160
161 private long rawBlockDataLong() throws IOException {
162 return ((rawBlockDataInt() & 0xffffffffl) << 32) | rawBlockDataInt();

Callers 3

rawBlockDataLongMethod · 0.95
readIntMethod · 0.95
readFloatMethod · 0.95

Calls 1

rawBlockDataShortMethod · 0.95

Tested by

no test coverage detected