Searched refs:mlCode (Results 1 – 7 of 7) sorted by relevance
186 { U32 const mlCode = ZSTD_MLcode(mlBase); in ZSTD_getMatchPrice() local187 …price += ML_bits[mlCode] + optPtr->log2matchLengthSum - ZSTD_highbit32(optPtr->matchLengthFreq[mlC… in ZSTD_getMatchPrice()220 U32 const mlCode = ZSTD_MLcode(mlBase); in ZSTD_updateStats() local221 optPtr->matchLengthFreq[mlCode]++; in ZSTD_updateStats()
1064 zc->seqStore.mlCode = zc->seqStore.llCode + maxNbSeq; in ZSTD_resetCCtx_internal()1065 zc->seqStore.ofCode = zc->seqStore.mlCode + maxNbSeq; in ZSTD_resetCCtx_internal()1451 BYTE* const mlCodeTable = seqStorePtr->mlCode; in ZSTD_seqToCodes()1595 BYTE const mlCode = mlCodeTable[n]; in ZSTD_encodeSequences_body() local1598 U32 const mlBits = ML_bits[mlCode]; in ZSTD_encodeSequences_body()1606 FSE_encodeSymbol(&blockStream, &stateMatchLength, mlCode); /* 24 */ /* 24 */ in ZSTD_encodeSequences_body()1717 const BYTE* const mlCodeTable = seqStorePtr->mlCode; in ZSTD_compressSequences_internal()
228 BYTE* mlCode; member
625 seqStore->mlCode = SEQUENCE_MLCODE; in initSeqStore()809 const BYTE* const mlCodeTable = seqStorePtr->mlCode; in writeSequences()952 BYTE const mlCode = mlCodeTable[n]; in writeSequences() local955 U32 const mlBits = ML_bits[mlCode]; in writeSequences()958 FSE_encodeSymbol(&blockStream, &stateMatchLength, mlCode); /* 24 */ /* 24 */ in writeSequences()
3289 U32 const mlCode = FSEv06_peekSymbol(&(seqState->stateML)); in ZSTDv06_decodeSequence() local3293 U32 const mlBits = ML_bits[mlCode]; in ZSTDv06_decodeSequence()3346 …seq->matchLength = ML_base[mlCode] + MINMATCH + ((mlCode>31) ? BITv06_readBits(&(seqState->DStream… in ZSTDv06_decodeSequence()
3515 U32 const mlCode = FSEv07_peekSymbol(&(seqState->stateML)); in ZSTDv07_decodeSequence() local3519 U32 const mlBits = ML_bits[mlCode]; in ZSTDv07_decodeSequence()3567 …seq.matchLength = ML_base[mlCode] + ((mlCode>31) ? BITv07_readBits(&(seqState->DStream), mlBits) :… in ZSTDv07_decodeSequence()
624 { const BYTE* codePtr = seqStorePtr->mlCode; in ZDICT_countEStats()