Home
last modified time | relevance | path

Searched refs:ofCode (Results 1 – 6 of 6) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h229 BYTE* ofCode; member
/freebsd-12.1/sys/contrib/zstd/tests/
H A Ddecodecorpus.c626 seqStore->ofCode = SEQUENCE_OFCODE; in initSeqStore()
807 const BYTE* const ofCodeTable = seqStorePtr->ofCode; in writeSequences()
951 BYTE const ofCode = ofCodeTable[n]; in writeSequences() local
954 U32 const ofBits = ofCode; /* 32b*/ /* 64b*/ in writeSequences()
957 FSE_encodeSymbol(&blockStream, &stateOffsetBits, ofCode); /* 15 */ /* 15 */ in writeSequences()
/freebsd-12.1/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c1065 zc->seqStore.ofCode = zc->seqStore.mlCode + maxNbSeq; in ZSTD_resetCCtx_internal()
1066 zc->seqStore.litStart = zc->seqStore.ofCode + maxNbSeq; in ZSTD_resetCCtx_internal()
1450 BYTE* const ofCodeTable = seqStorePtr->ofCode; in ZSTD_seqToCodes()
1594 BYTE const ofCode = ofCodeTable[n]; in ZSTD_encodeSequences_body() local
1597 U32 const ofBits = ofCode; in ZSTD_encodeSequences_body()
1605 FSE_encodeSymbol(&blockStream, &stateOffsetBits, ofCode); /* 15 */ /* 15 */ in ZSTD_encodeSequences_body()
1715 const BYTE* const ofCodeTable = seqStorePtr->ofCode; in ZSTD_compressSequences_internal()
/freebsd-12.1/sys/contrib/zstd/lib/legacy/
H A Dzstd_v07.c3516 …U32 const ofCode = FSEv07_peekSymbol(&(seqState->stateOffb)); /* <= maxOff, by table constructio… in ZSTDv07_decodeSequence() local
3520 U32 const ofBits = ofCode; in ZSTDv07_decodeSequence()
3542 if (!ofCode) in ZSTDv07_decodeSequence()
3545 …offset = OF_base[ofCode] + BITv07_readBits(&(seqState->DStream), ofBits); /* <= (ZSTDv07_WINDOW… in ZSTDv07_decodeSequence()
3549 if (ofCode <= 1) { in ZSTDv07_decodeSequence()
H A Dzstd_v06.c3290 …U32 const ofCode = FSEv06_peekSymbol(&(seqState->stateOffb)); /* <= maxOff, by table constructio… in ZSTDv06_decodeSequence() local
3294 U32 const ofBits = ofCode; in ZSTDv06_decodeSequence()
3316 if (!ofCode) in ZSTDv06_decodeSequence()
3319 … offset = OF_base[ofCode] + BITv06_readBits(&(seqState->DStream), ofBits); /* <= 26 bits */ in ZSTDv06_decodeSequence()
/freebsd-12.1/sys/contrib/zstd/lib/dictBuilder/
H A Dzdict.c619 { const BYTE* codePtr = seqStorePtr->ofCode; in ZDICT_countEStats()