Lines Matching refs:offCode
10350 …StorePtr, size_t litLength, const BYTE* literals, const BYTE* litLimit, U32 offCode, size_t mlBase) in ZSTD_storeSeq() argument
10359 pos, (U32)litLength, (U32)mlBase+MINMATCH, (U32)offCode); in ZSTD_storeSeq()
10390 seqStorePtr->sequences[0].offset = offCode + 1; in ZSTD_storeSeq()
20409 U32 const offCode = ZSTD_highbit32(offset+1); in ZSTD_getMatchPrice() local
20414 return WEIGHT(mlBase, optLevel) + ((16 + offCode) * BITCOST_MULTIPLIER); in ZSTD_getMatchPrice()
20417 …price = (offCode * BITCOST_MULTIPLIER) + (optPtr->offCodeSumBasePrice - WEIGHT(optPtr->offCodeFreq… in ZSTD_getMatchPrice()
20418 if ((optLevel<2) /*static*/ && offCode >= 20) in ZSTD_getMatchPrice()
20419 …price += (offCode-19)*2 * BITCOST_MULTIPLIER; /* handicap for long distance offsets, favor decompr… in ZSTD_getMatchPrice()
20453 { U32 const offCode = ZSTD_highbit32(offsetCode+1); in ZSTD_updateStats() local
20454 assert(offCode <= MaxOff); in ZSTD_updateStats()
20455 optPtr->offCodeFreq[offCode]++; in ZSTD_updateStats()
21189 U32 const offCode = opt[storePos].off; in ZSTD_compressBlock_opt_generic() local
21201 ZSTD_updateStats(optStatePtr, llen, anchor, offCode, mlen); in ZSTD_compressBlock_opt_generic()
21202 ZSTD_storeSeq(seqStore, llen, anchor, iend, offCode, mlen-MINMATCH); in ZSTD_compressBlock_opt_generic()