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

Method rawShort

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

Source from the content-addressed store, hash-verified

69 }
70
71 private void rawShort(int v) throws IOException {
72 rawByte(v >> 8);
73 rawByte(v);
74 }
75
76 private void rawInt(int v) throws IOException {
77 rawShort(v >> 16);

Callers 7

ObjectOutputStreamMethod · 0.95
rawIntMethod · 0.95
blockDataMethod · 0.95
stringMethod · 0.95
classDescMethod · 0.95
fieldMethod · 0.95
writeObjectMethod · 0.95

Calls 1

rawByteMethod · 0.95

Tested by

no test coverage detected