MCPcopy Create free account
hub / github.com/ZDoom/Raze / WriteUInt64

Function WriteUInt64

source/common/scripting/jit/jit_runtime.cpp:328–332  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

326}
327
328static void WriteUInt64(TArray<uint8_t> &stream, uint64_t v)
329{
330 for (int i = 0; i < 8; i++)
331 stream.Push((v >> (i * 8)) & 0xff);
332}
333
334static void WriteUInt32(TArray<uint8_t> &stream, uint32_t v)
335{

Callers 1

WriteFDEFunction · 0.85

Calls 1

PushMethod · 0.45

Tested by

no test coverage detected