MCPcopy Create free account
hub / github.com/deathkiller/jazz2-native / WriteVariableInt64

Method WriteVariableInt64

Sources/Shared/IO/Stream.cpp:89–93  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

87 }
88
89 std::int64_t Stream::WriteVariableInt64(std::int64_t value)
90 {
91 std::uint64_t n = (std::uint64_t)(value << 1) ^ (std::uint64_t)(value >> 63);
92 return WriteVariableUint64(n);
93 }
94
95 std::int64_t Stream::WriteVariableUint32(std::uint32_t value)
96 {

Callers 5

OnPacketReceivedMethod · 0.80
WriteItemDescriptionMethod · 0.80
AppendLogFileHeaderMethod · 0.80
OnPacketReceivedMethod · 0.80
SerializeToFileMethod · 0.80

Calls

no outgoing calls

Tested by

no test coverage detected