Home
last modified time | relevance | path

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

/linux-6.1.9/lib/zstd/compress/
Dzstd_fast.c235 const U32 dictAndPrefixLength = (U32)(ip - prefixStart + dictEnd - dictStart); in ZSTD_compressBlock_fast_dictMatchState_generic() local
251 ip += (dictAndPrefixLength == 0); in ZSTD_compressBlock_fast_dictMatchState_generic()
254 assert(offset_1 <= dictAndPrefixLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
255 assert(offset_2 <= dictAndPrefixLength); in ZSTD_compressBlock_fast_dictMatchState_generic()
Dzstd_double_fast.c97 const U32 dictAndPrefixLength = (U32)((ip - prefixLowest) + (dictEnd - dictStart)); in ZSTD_compressBlock_doubleFast_generic() local
109 ip += (dictAndPrefixLength == 0); in ZSTD_compressBlock_doubleFast_generic()
120 assert(offset_1 <= dictAndPrefixLength); in ZSTD_compressBlock_doubleFast_generic()
121 assert(offset_2 <= dictAndPrefixLength); in ZSTD_compressBlock_doubleFast_generic()
Dzstd_lazy.c916 const U32 dictAndPrefixLength = (U32)((ip - prefixLowest) + (dictEnd - dictLowest)); in ZSTD_compressBlock_lazy_generic() local
923 ip += (dictAndPrefixLength == 0); in ZSTD_compressBlock_lazy_generic()
934 assert(offset_1 <= dictAndPrefixLength); in ZSTD_compressBlock_lazy_generic()
935 assert(offset_2 <= dictAndPrefixLength); in ZSTD_compressBlock_lazy_generic()