Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/F-Stack/f-stack
/ MEM_writeLE24
Function
MEM_writeLE24
freebsd/contrib/zstd/lib/common/mem.h:314–318 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
312
}
313
314
MEM_STATIC void MEM_writeLE24(void* memPtr, U32 val)
315
{
316
MEM_writeLE16(memPtr, (U16)val);
317
((BYTE*)memPtr)[2] = (BYTE)(val>>16);
318
}
319
320
MEM_STATIC U32 MEM_readLE32(const void* memPtr)
321
{
Callers
8
ZSTD_compressLiterals
Function · 0.50
ZSTD_compressSubBlock_literal
Function · 0.50
ZSTD_compressSubBlock
Function · 0.50
ZSTD_noCompressBlock
Function · 0.50
ZSTD_rleCompressBlock
Function · 0.50
ZSTD_compress_frameChunk
Function · 0.50
ZSTD_writeLastEmptyBlock
Function · 0.50
ZSTD_compressSequences_internal
Function · 0.50
Calls
1
MEM_writeLE16
Function · 0.70
Tested by
no test coverage detected