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

Function WriteUInt32

source/common/scripting/jit/jit_runtime.cpp:334–338  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

332}
333
334static void WriteUInt32(TArray<uint8_t> &stream, uint32_t v)
335{
336 for (int i = 0; i < 4; i++)
337 stream.Push((v >> (i * 8)) & 0xff);
338}
339
340static void WriteUInt16(TArray<uint8_t> &stream, uint16_t v)
341{

Callers 4

WriteCIEFunction · 0.85
WriteFDEFunction · 0.85
WriteAdvanceLocFunction · 0.85
CreateUnwindInfoUnixFunction · 0.85

Calls 1

PushMethod · 0.45

Tested by

no test coverage detected