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

Function MEM_readLE32

freebsd/contrib/openzfs/module/zstd/lib/zstd.c:554–560  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

552}
553
554MEM_STATIC U32 MEM_readLE32(const void* memPtr)
555{
556 if (MEM_isLittleEndian())
557 return MEM_read32(memPtr);
558 else
559 return MEM_swap32(MEM_read32(memPtr));
560}
561
562MEM_STATIC void MEM_writeLE32(void* memPtr, U32 val32)
563{

Callers 15

MEM_readLESTFunction · 0.70
FSE_readNCountFunction · 0.70
ZSTD_hash3PtrFunction · 0.70
ZSTD_loadCEntropyFunction · 0.70
ZSTD_loadZstdDictionaryFunction · 0.70
ZSTD_isLegacyFunction · 0.70
ZSTD_isFrameFunction · 0.70
readSkippableFrameSizeFunction · 0.70

Calls 3

MEM_isLittleEndianFunction · 0.70
MEM_read32Function · 0.70
MEM_swap32Function · 0.70

Tested by

no test coverage detected