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

Method rawInt

classpath/java/io/ObjectOutputStream.java:76–79  ·  view source on GitHub ↗
(int v)

Source from the content-addressed store, hash-verified

74 }
75
76 private void rawInt(int v) throws IOException {
77 rawShort(v >> 16);
78 rawShort(v);
79 }
80
81 private void rawLong(long v) throws IOException {
82 rawInt((int)(v >> 32));

Callers 3

rawLongMethod · 0.95
blockDataMethod · 0.95
fieldMethod · 0.95

Calls 1

rawShortMethod · 0.95

Tested by

no test coverage detected