Home
last modified time | relevance | path

Searched refs:FSE_MIN_TABLELOG (Results 1 – 3 of 3) sorted by relevance

/linux-6.15/lib/zstd/compress/
H A Dfse_compress.c253 bitStream += (tableLog-FSE_MIN_TABLELOG) << bitCount; in FSE_writeNCount_generic()
335 if (tableLog < FSE_MIN_TABLELOG) return ERROR(GENERIC); /* Unsupported */ in FSE_writeNCount()
367 if (tableLog < FSE_MIN_TABLELOG) tableLog = FSE_MIN_TABLELOG; in FSE_optimalTableLog_internal()
472 if (tableLog < FSE_MIN_TABLELOG) return ERROR(GENERIC); /* Unsupported size */ in FSE_normalizeCount()
/linux-6.15/lib/zstd/common/
H A Dentropy_common.c73 nbBits = (bitStream & 0xF) + FSE_MIN_TABLELOG; /* extract tableLog */ in FSE_readNCount_body()
H A Dfse.h617 #define FSE_MIN_TABLELOG 5 macro