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

Method rawInt

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

Source from the content-addressed store, hash-verified

80 }
81
82 private int rawInt() throws IOException {
83 return (rawShort() << 16) | rawShort();
84 }
85
86 private long rawLong() throws IOException {
87 return ((rawInt() & 0xffffffffl) << 32) | rawInt();

Callers 3

rawLongMethod · 0.95
fieldMethod · 0.95
readObjectMethod · 0.95

Calls 1

rawShortMethod · 0.95

Tested by

no test coverage detected