Lines Matching refs:BYTE

24     const BYTE* const base = ms->window.base;  in ZSTD_fillDoubleHashTable()
25 const BYTE* ip = base + ms->nextToUpdate; in ZSTD_fillDoubleHashTable()
26 const BYTE* const iend = ((const BYTE*)end) - HASH_READ_SIZE; in ZSTD_fillDoubleHashTable()
61 const BYTE* const base = ms->window.base; in ZSTD_compressBlock_doubleFast_generic()
62 const BYTE* const istart = (const BYTE*)src; in ZSTD_compressBlock_doubleFast_generic()
63 const BYTE* ip = istart; in ZSTD_compressBlock_doubleFast_generic()
64 const BYTE* anchor = istart; in ZSTD_compressBlock_doubleFast_generic()
68 const BYTE* const prefixLowest = base + prefixLowestIndex; in ZSTD_compressBlock_doubleFast_generic()
69 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_doubleFast_generic()
70 const BYTE* const ilimit = iend - HASH_READ_SIZE; in ZSTD_compressBlock_doubleFast_generic()
84 const BYTE* const dictBase = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic()
86 const BYTE* const dictStart = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic()
88 const BYTE* const dictEnd = dictMode == ZSTD_dictMatchState ? in ZSTD_compressBlock_doubleFast_generic()
135 const BYTE* matchLong = base + matchIndexL; in ZSTD_compressBlock_doubleFast_generic()
136 const BYTE* match = base + matchIndexS; in ZSTD_compressBlock_doubleFast_generic()
138 const BYTE* repMatch = (dictMode == ZSTD_dictMatchState in ZSTD_compressBlock_doubleFast_generic()
148 const BYTE* repMatchEnd = repIndex < prefixLowestIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_generic()
175 const BYTE* dictMatchL = dictBase + dictMatchIndexL; in ZSTD_compressBlock_doubleFast_generic()
211 const BYTE* matchL3 = base + matchIndexL3; in ZSTD_compressBlock_doubleFast_generic()
226 const BYTE* dictMatchL3 = dictBase + dictMatchIndexL3; in ZSTD_compressBlock_doubleFast_generic()
273 const BYTE* repMatch2 = dictMode == ZSTD_dictMatchState in ZSTD_compressBlock_doubleFast_generic()
279 const BYTE* const repEnd2 = repIndex2 < prefixLowestIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_generic()
367 const BYTE* const istart = (const BYTE*)src; in ZSTD_compressBlock_doubleFast_extDict_generic()
368 const BYTE* ip = istart; in ZSTD_compressBlock_doubleFast_extDict_generic()
369 const BYTE* anchor = istart; in ZSTD_compressBlock_doubleFast_extDict_generic()
370 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_doubleFast_extDict_generic()
371 const BYTE* const ilimit = iend - 8; in ZSTD_compressBlock_doubleFast_extDict_generic()
372 const BYTE* const base = ms->window.base; in ZSTD_compressBlock_doubleFast_extDict_generic()
378 const BYTE* const prefixStart = base + prefixStartIndex; in ZSTD_compressBlock_doubleFast_extDict_generic()
379 const BYTE* const dictBase = ms->window.dictBase; in ZSTD_compressBlock_doubleFast_extDict_generic()
380 const BYTE* const dictStart = dictBase + dictStartIndex; in ZSTD_compressBlock_doubleFast_extDict_generic()
381 const BYTE* const dictEnd = dictBase + prefixStartIndex; in ZSTD_compressBlock_doubleFast_extDict_generic()
394 const BYTE* const matchBase = matchIndex < prefixStartIndex ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()
395 const BYTE* match = matchBase + matchIndex; in ZSTD_compressBlock_doubleFast_extDict_generic()
399 const BYTE* const matchLongBase = matchLongIndex < prefixStartIndex ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()
400 const BYTE* matchLong = matchLongBase + matchLongIndex; in ZSTD_compressBlock_doubleFast_extDict_generic()
404 const BYTE* const repBase = repIndex < prefixStartIndex ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()
405 const BYTE* const repMatch = repBase + repIndex; in ZSTD_compressBlock_doubleFast_extDict_generic()
412 const BYTE* repMatchEnd = repIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()
418 const BYTE* const matchEnd = matchLongIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()
419 … const BYTE* const lowMatchPtr = matchLongIndex < prefixStartIndex ? dictStart : prefixStart; in ZSTD_compressBlock_doubleFast_extDict_generic()
431 const BYTE* const match3Base = matchIndex3 < prefixStartIndex ? dictBase : base; in ZSTD_compressBlock_doubleFast_extDict_generic()
432 const BYTE* match3 = match3Base + matchIndex3; in ZSTD_compressBlock_doubleFast_extDict_generic()
436 const BYTE* const matchEnd = matchIndex3 < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()
437 … const BYTE* const lowMatchPtr = matchIndex3 < prefixStartIndex ? dictStart : prefixStart; in ZSTD_compressBlock_doubleFast_extDict_generic()
443 const BYTE* const matchEnd = matchIndex < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()
444 … const BYTE* const lowMatchPtr = matchIndex < prefixStartIndex ? dictStart : prefixStart; in ZSTD_compressBlock_doubleFast_extDict_generic()
476 … const BYTE* repMatch2 = repIndex2 < prefixStartIndex ? dictBase + repIndex2 : base + repIndex2; in ZSTD_compressBlock_doubleFast_extDict_generic()
480 const BYTE* const repEnd2 = repIndex2 < prefixStartIndex ? dictEnd : iend; in ZSTD_compressBlock_doubleFast_extDict_generic()