MCPcopy Create free account
hub / github.com/GRAnimated/MinecraftLCE / writeShort

Method writeShort

src/Minecraft.World/java/io/DataOutputStream.cpp:45–49  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

43}
44
45void DataOutputStream::writeShort(short value) {
46 this->m_outputStream->write((value >> 8) & 0xFF);
47 this->m_outputStream->write((value) & 0xFF);
48 this->m_size += 2;
49}
50
51void DataOutputStream::writeDouble(double value) {
52 long long fake = Double::doubleToLongBits(value);

Callers 9

saveMethod · 0.80
writeMethod · 0.80
writeMethod · 0.80
writeMethod · 0.80
writeMethod · 0.80
writeMethod · 0.80
writeMethod · 0.80
writeMethod · 0.80
writeMethod · 0.80

Calls 1

writeMethod · 0.45

Tested by

no test coverage detected