Lines Matching refs:BYTE

143             const BYTE* const src, size_t const srcSize,  in ZSTD_rescaleFreqs()
267 static U32 ZSTD_rawLiteralsCost(const BYTE* const literals, U32 const litLength, in ZSTD_rawLiteralsCost()
358 U32 litLength, const BYTE* literals, in ZSTD_updateStats()
414 const BYTE* const ip) in ZSTD_insertAndFindFirstIndexHash3()
418 const BYTE* const base = ms->window.base; in ZSTD_insertAndFindFirstIndexHash3()
445 const BYTE* const ip, const BYTE* const iend, in ZSTD_insertBt1()
458 const BYTE* const base = ms->window.base; in ZSTD_insertBt1()
459 const BYTE* const dictBase = ms->window.dictBase; in ZSTD_insertBt1()
461 const BYTE* const dictEnd = dictBase + dictLimit; in ZSTD_insertBt1()
462 const BYTE* const prefixStart = base + dictLimit; in ZSTD_insertBt1()
463 const BYTE* match; in ZSTD_insertBt1()
565 const BYTE* const ip, const BYTE* const iend, in ZSTD_updateTree_internal()
568 const BYTE* const base = ms->window.base; in ZSTD_updateTree_internal()
584 void ZSTD_updateTree(ZSTD_MatchState_t* ms, const BYTE* ip, const BYTE* iend) { in ZSTD_updateTree()
595 const BYTE* const ip, const BYTE* const iLimit, in ZSTD_insertBtAndGetAllMatches()
604 const BYTE* const base = ms->window.base; in ZSTD_insertBtAndGetAllMatches()
615 const BYTE* const dictBase = ms->window.dictBase; in ZSTD_insertBtAndGetAllMatches()
617 const BYTE* const dictEnd = dictBase + dictLimit; in ZSTD_insertBtAndGetAllMatches()
618 const BYTE* const prefixStart = base + dictLimit; in ZSTD_insertBtAndGetAllMatches()
632 const BYTE* const dmsBase = dictMode == ZSTD_dictMatchState ? dms->window.base : NULL; in ZSTD_insertBtAndGetAllMatches()
633 const BYTE* const dmsEnd = dictMode == ZSTD_dictMatchState ? dms->window.nextSrc : NULL; in ZSTD_insertBtAndGetAllMatches()
662 const BYTE* const repMatch = dictMode == ZSTD_dictMatchState ? in ZSTD_insertBtAndGetAllMatches()
698 const BYTE* const match = base + matchIndex3; in ZSTD_insertBtAndGetAllMatches()
701 const BYTE* const match = dictBase + matchIndex3; in ZSTD_insertBtAndGetAllMatches()
727 const BYTE* match; in ZSTD_insertBtAndGetAllMatches()
786 const BYTE* match = dmsBase + dictMatchIndex; in ZSTD_insertBtAndGetAllMatches()
825 const BYTE*,
826 const BYTE*,
837 const BYTE* ip, in ZSTD_btGetAllMatches_internal()
838 const BYTE* const iHighLimit, in ZSTD_btGetAllMatches_internal()
860 const BYTE* ip, \
861 const BYTE* const iHighLimit, \
1086 const BYTE* const istart = (const BYTE*)src; in ZSTD_compressBlock_opt_generic()
1087 const BYTE* ip = istart; in ZSTD_compressBlock_opt_generic()
1088 const BYTE* anchor = istart; in ZSTD_compressBlock_opt_generic()
1089 const BYTE* const iend = istart + srcSize; in ZSTD_compressBlock_opt_generic()
1090 const BYTE* const ilimit = iend - 8; in ZSTD_compressBlock_opt_generic()
1091 const BYTE* const base = ms->window.base; in ZSTD_compressBlock_opt_generic()
1092 const BYTE* const prefixStart = base + ms->window.dictLimit; in ZSTD_compressBlock_opt_generic()
1116 ZSTD_rescaleFreqs(optStatePtr, (const BYTE*)src, srcSize, optLevel); in ZSTD_compressBlock_opt_generic()
1202 const BYTE* const inr = ip + cur; in ZSTD_compressBlock_opt_generic()
1522 U32 const curr = (U32)((const BYTE*)src - ms->window.base); in ZSTD_compressBlock_btultra2()