Lines Matching refs:BYTE
38 ZSTD_STATIC void ZSTD_rescaleFreqs(seqStore_t *ssPtr, const BYTE *src, size_t srcSize) in ZSTD_rescaleFreqs()
101 FORCE_INLINE U32 ZSTD_getLiteralPrice(seqStore_t *ssPtr, U32 litLength, const BYTE *literals) in ZSTD_getLiteralPrice()
114 const BYTE *literals2 = ssPtr->cachedLiterals + ssPtr->cachedLitLength; in ZSTD_getLiteralPrice()
134 const BYTE LL_deltaCode = 19; in ZSTD_getLiteralPrice()
135 …const BYTE llCode = (litLength > 63) ? (BYTE)ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[li… in ZSTD_getLiteralPrice()
142 FORCE_INLINE U32 ZSTD_getPrice(seqStore_t *seqStorePtr, U32 litLength, const BYTE *literals, U32 of… in ZSTD_getPrice()
146 BYTE const offCode = (BYTE)ZSTD_highbit32(offset + 1); in ZSTD_getPrice()
157 const BYTE ML_deltaCode = 36; in ZSTD_getPrice()
158 …const BYTE mlCode = (matchLength > 127) ? (BYTE)ZSTD_highbit32(matchLength) + ML_deltaCode : ML_Co… in ZSTD_getPrice()
165 ZSTD_STATIC void ZSTD_updatePrice(seqStore_t *seqStorePtr, U32 litLength, const BYTE *literals, U32… in ZSTD_updatePrice()
176 const BYTE LL_deltaCode = 19; in ZSTD_updatePrice()
177 …const BYTE llCode = (litLength > 63) ? (BYTE)ZSTD_highbit32(litLength) + LL_deltaCode : LL_Code[li… in ZSTD_updatePrice()
184 BYTE const offCode = (BYTE)ZSTD_highbit32(offset + 1); in ZSTD_updatePrice()
191 const BYTE ML_deltaCode = 36; in ZSTD_updatePrice()
192 …const BYTE mlCode = (matchLength > 127) ? (BYTE)ZSTD_highbit32(matchLength) + ML_deltaCode : ML_Co… in ZSTD_updatePrice()
215 U32 ZSTD_insertAndFindFirstIndexHash3(ZSTD_CCtx *zc, const BYTE *ip) in ZSTD_insertAndFindFirstIndexHash3()
219 const BYTE *const base = zc->base; in ZSTD_insertAndFindFirstIndexHash3()
235 static U32 ZSTD_insertBtAndGetAllMatches(ZSTD_CCtx *zc, const BYTE *const ip, const BYTE *const iLi… in ZSTD_insertBtAndGetAllMatches()
238 const BYTE *const base = zc->base; in ZSTD_insertBtAndGetAllMatches()
248 const BYTE *const dictBase = zc->dictBase; in ZSTD_insertBtAndGetAllMatches()
250 const BYTE *const dictEnd = dictBase + dictLimit; in ZSTD_insertBtAndGetAllMatches()
251 const BYTE *const prefixStart = base + dictLimit; in ZSTD_insertBtAndGetAllMatches()
266 const BYTE *match; in ZSTD_insertBtAndGetAllMatches()
298 const BYTE *match; in ZSTD_insertBtAndGetAllMatches()
356 static U32 ZSTD_BtGetAllMatches(ZSTD_CCtx *zc, const BYTE *const ip, const BYTE *const iLimit, cons… in ZSTD_BtGetAllMatches()
366 …const BYTE *ip, const BYTE *const iHighLimit, const U32 maxNbAttempts, const U32 matchLengthSearch, in ZSTD_BtGetAllMatches_selectMLS()
380 static U32 ZSTD_BtGetAllMatches_extDict(ZSTD_CCtx *zc, const BYTE *const ip, const BYTE *const iLim… in ZSTD_BtGetAllMatches_extDict()
390 …const BYTE *ip, const BYTE *const iHighLimit, const U32 maxNbAttempts, const U32 matchLengthSearch, in ZSTD_BtGetAllMatches_selectMLS_extDict()
410 const BYTE *const istart = (const BYTE *)src; in ZSTD_compressBlock_opt_generic()
411 const BYTE *ip = istart; in ZSTD_compressBlock_opt_generic()
412 const BYTE *anchor = istart; in ZSTD_compressBlock_opt_generic()
413 const BYTE *const iend = istart + srcSize; in ZSTD_compressBlock_opt_generic()
414 const BYTE *const ilimit = iend - 8; in ZSTD_compressBlock_opt_generic()
415 const BYTE *const base = ctx->base; in ZSTD_compressBlock_opt_generic()
416 const BYTE *const prefixStart = base + ctx->dictLimit; in ZSTD_compressBlock_opt_generic()
425 const BYTE *inr; in ZSTD_compressBlock_opt_generic()
430 ZSTD_rescaleFreqs(seqStorePtr, (const BYTE *)src, srcSize); in ZSTD_compressBlock_opt_generic()
703 const BYTE *const istart = (const BYTE *)src; in ZSTD_compressBlock_opt_extDict_generic()
704 const BYTE *ip = istart; in ZSTD_compressBlock_opt_extDict_generic()
705 const BYTE *anchor = istart; in ZSTD_compressBlock_opt_extDict_generic()
706 const BYTE *const iend = istart + srcSize; in ZSTD_compressBlock_opt_extDict_generic()
707 const BYTE *const ilimit = iend - 8; in ZSTD_compressBlock_opt_extDict_generic()
708 const BYTE *const base = ctx->base; in ZSTD_compressBlock_opt_extDict_generic()
711 const BYTE *const prefixStart = base + dictLimit; in ZSTD_compressBlock_opt_extDict_generic()
712 const BYTE *const dictBase = ctx->dictBase; in ZSTD_compressBlock_opt_extDict_generic()
713 const BYTE *const dictEnd = dictBase + dictLimit; in ZSTD_compressBlock_opt_extDict_generic()
722 const BYTE *inr; in ZSTD_compressBlock_opt_extDict_generic()
733 ZSTD_rescaleFreqs(seqStorePtr, (const BYTE *)src, srcSize); in ZSTD_compressBlock_opt_extDict_generic()
751 const BYTE *const repBase = repIndex < dictLimit ? dictBase : base; in ZSTD_compressBlock_opt_extDict_generic()
752 const BYTE *const repMatch = repBase + repIndex; in ZSTD_compressBlock_opt_extDict_generic()
757 const BYTE *const repEnd = repIndex < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_opt_extDict_generic()
864 const BYTE *const repBase = repIndex < dictLimit ? dictBase : base; in ZSTD_compressBlock_opt_extDict_generic()
865 const BYTE *const repMatch = repBase + repIndex; in ZSTD_compressBlock_opt_extDict_generic()
870 const BYTE *const repEnd = repIndex < dictLimit ? dictEnd : iend; in ZSTD_compressBlock_opt_extDict_generic()