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/openzfs/module/zstd/lib/zstd.c:548–552 ·
view source on GitHub ↗
Source
from the content-addressed store, hash-verified
546
}
547
548
MEM_STATIC void MEM_writeLE24(void* memPtr, U32 val)
549
{
550
MEM_writeLE16(memPtr, (U16)val);
551
((BYTE*)memPtr)[2] = (BYTE)(val>>16);
552
}
553
554
MEM_STATIC U32 MEM_readLE32(const void* memPtr)
555
{
Callers
7
ZSTD_noCompressBlock
Function · 0.70
ZSTD_rleCompressBlock
Function · 0.70
ZSTD_compressLiterals
Function · 0.70
ZSTD_compressSubBlock_literal
Function · 0.70
ZSTD_compressSubBlock
Function · 0.70
ZSTD_compress_frameChunk
Function · 0.70
ZSTD_writeLastEmptyBlock
Function · 0.70
Calls
1
MEM_writeLE16
Function · 0.70
Tested by
no test coverage detected