MCPcopy Create free account
hub / github.com/F-Stack/f-stack / MEM_writeLE64

Function MEM_writeLE64

freebsd/contrib/zstd/lib/common/mem.h:344–350  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

342}
343
344MEM_STATIC void MEM_writeLE64(void* memPtr, U64 val64)
345{
346 if (MEM_isLittleEndian())
347 MEM_write64(memPtr, val64);
348 else
349 MEM_write64(memPtr, MEM_swap64(val64));
350}
351
352MEM_STATIC size_t MEM_readLEST(const void* memPtr)
353{

Callers 2

MEM_writeLESTFunction · 0.70
ZSTD_writeFrameHeaderFunction · 0.50

Calls 3

MEM_isLittleEndianFunction · 0.70
MEM_write64Function · 0.70
MEM_swap64Function · 0.70

Tested by

no test coverage detected