Home
last modified time | relevance | path

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

/external/zstd/lib/compress/
Dzstd_compress_superblock.c181 const BYTE* const ofCodeTable = seqStorePtr->ofCode; in ZSTD_buildSuperBlockEntropy_sequences()
439 … const BYTE* llCode, const BYTE* mlCode, const BYTE* ofCode, in ZSTD_compressSubBlock_sequences() argument
487 fseTables->offcodeCTable, ofCode, in ZSTD_compressSubBlock_sequences()
540 const BYTE* llCode, const BYTE* mlCode, const BYTE* ofCode, in ZSTD_compressSubBlock() argument
563 llCode, mlCode, ofCode, in ZSTD_compressSubBlock()
724 const BYTE* ofCodePtr = seqStorePtr->ofCode; in ZSTD_compressSubBlock_multi()
Dzstd_compress_sequences.c326 BYTE const ofCode = ofCodeTable[n]; in ZSTD_encodeSequences_body() local
329 U32 const ofBits = ofCode; in ZSTD_encodeSequences_body()
337 FSE_encodeSymbol(&blockStream, &stateOffsetBits, ofCode); /* 15 */ /* 15 */ in ZSTD_encodeSequences_body()
Dzstd_compress.c1726 zc->seqStore.ofCode = ZSTD_cwksp_reserve_buffer(ws, maxNbSeq * sizeof(BYTE)); in ZSTD_resetCCtx_internal()
2119 BYTE* const ofCodeTable = seqStorePtr->ofCode; in ZSTD_seqToCodes()
2166 const BYTE* const ofCodeTable = seqStorePtr->ofCode; in ZSTD_entropyCompressSequences_internal()
/external/zstd/tests/
Ddecodecorpus.c630 seqStore->ofCode = SEQUENCE_OFCODE; in initSeqStore()
812 const BYTE* const ofCodeTable = seqStorePtr->ofCode; in writeSequences()
960 BYTE const ofCode = ofCodeTable[n]; in writeSequences() local
963 U32 const ofBits = ofCode; /* 32b*/ /* 64b*/ in writeSequences()
966 FSE_encodeSymbol(&blockStream, &stateOffsetBits, ofCode); /* 15 */ /* 15 */ in writeSequences()
/external/zstd/lib/common/
Dzstd_internal.h362 BYTE* ofCode; member
/external/zstd/lib/legacy/
Dzstd_v07.c3524 …U32 const ofCode = FSEv07_peekSymbol(&(seqState->stateOffb)); /* <= maxOff, by table constructio… in ZSTDv07_decodeSequence() local
3528 U32 const ofBits = ofCode; in ZSTDv07_decodeSequence()
3550 if (!ofCode) in ZSTDv07_decodeSequence()
3553 …offset = OF_base[ofCode] + BITv07_readBits(&(seqState->DStream), ofBits); /* <= (ZSTDv07_WINDOW… in ZSTDv07_decodeSequence()
3557 if (ofCode <= 1) { in ZSTDv07_decodeSequence()
Dzstd_v06.c3294 …U32 const ofCode = FSEv06_peekSymbol(&(seqState->stateOffb)); /* <= maxOff, by table constructio… in ZSTDv06_decodeSequence() local
3298 U32 const ofBits = ofCode; in ZSTDv06_decodeSequence()
3320 if (!ofCode) in ZSTDv06_decodeSequence()
3323 … offset = OF_base[ofCode] + BITv06_readBits(&(seqState->DStream), ofBits); /* <= 26 bits */ in ZSTDv06_decodeSequence()
/external/zstd/lib/dictBuilder/
Dzdict.c643 { const BYTE* codePtr = seqStorePtr->ofCode; in ZDICT_countEStats()