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

Method writeInt

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

Source from the content-addressed store, hash-verified

132 }
133
134 public void writeInt(int v) throws IOException {
135 blockData(v >> 24, v >> 16, v >> 8, v);
136 }
137
138 public void writeLong(long v) throws IOException {
139 int u = (int)(v >> 32), l = (int)(v & 0xffffffff);

Callers 2

mainMethod · 0.95
writeFloatMethod · 0.95

Calls 1

blockDataMethod · 0.95

Tested by 1

mainMethod · 0.76