Home
last modified time | relevance | path

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

/openbmc/linux/lib/zstd/compress/
H A Dzstd_double_fast.c346 const BYTE* dictMatchL = dictBase + dictMatchIndexL; in ZSTD_compressBlock_doubleFast_dictMatchState_generic() local
347 assert(dictMatchL < dictEnd); in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
349 if (dictMatchL > dictStart && MEM_read64(dictMatchL) == MEM_read64(ip)) { in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
350 mLength = ZSTD_count_2segments(ip+8, dictMatchL+8, iend, dictEnd, prefixLowest) + 8; in ZSTD_compressBlock_doubleFast_dictMatchState_generic()
352 …while (((ip>anchor) & (dictMatchL>dictStart)) && (ip[-1] == dictMatchL[-1])) { ip--; dictMatchL--;… in ZSTD_compressBlock_doubleFast_dictMatchState_generic()