Searched refs:llCode (Results 1 – 9 of 9) sorted by relevance
/external/zstd/lib/compress/ |
D | zstd_compress_superblock.c | 182 const BYTE* const llCodeTable = seqStorePtr->llCode; in ZSTD_buildSuperBlockEntropy_sequences() 439 … const BYTE* llCode, const BYTE* mlCode, const BYTE* ofCode, in ZSTD_compressSubBlock_sequences() argument 488 fseTables->litlengthCTable, llCode, 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() 722 const BYTE* llCodePtr = seqStorePtr->llCode; in ZSTD_compressSubBlock_multi()
|
D | zstd_compress_sequences.c | 325 BYTE const llCode = llCodeTable[n]; in ZSTD_encodeSequences_body() local 328 U32 const llBits = LL_bits[llCode]; in ZSTD_encodeSequences_body() 340 FSE_encodeSymbol(&blockStream, &stateLitLength, llCode); /* 16 */ /* 33 */ in ZSTD_encodeSequences_body()
|
D | zstd_opt.c | 245 { U32 const llCode = ZSTD_LLcode(litLength); in ZSTD_litLengthPrice() local 246 return (LL_bits[llCode] * BITCOST_MULTIPLIER) in ZSTD_litLengthPrice() 248 - WEIGHT(optPtr->litLengthFreq[llCode], optLevel); in ZSTD_litLengthPrice() 301 { U32 const llCode = ZSTD_LLcode(litLength); in ZSTD_updateStats() local 302 optPtr->litLengthFreq[llCode]++; in ZSTD_updateStats()
|
D | zstd_compress.c | 1724 zc->seqStore.llCode = ZSTD_cwksp_reserve_buffer(ws, maxNbSeq * sizeof(BYTE)); in ZSTD_resetCCtx_internal() 2118 BYTE* const llCodeTable = seqStorePtr->llCode; in ZSTD_seqToCodes() 2167 const BYTE* const llCodeTable = seqStorePtr->llCode; in ZSTD_entropyCompressSequences_internal()
|
/external/zstd/tests/ |
D | decodecorpus.c | 628 seqStore->llCode = SEQUENCE_LLCODE; in initSeqStore() 813 const BYTE* const llCodeTable = seqStorePtr->llCode; in writeSequences() 959 BYTE const llCode = llCodeTable[n]; in writeSequences() local 962 U32 const llBits = LL_bits[llCode]; in writeSequences() 969 FSE_encodeSymbol(&blockStream, &stateLitLength, llCode); /* 16 */ /* 33 */ in writeSequences()
|
/external/zstd/lib/common/ |
D | zstd_internal.h | 360 BYTE* llCode; member
|
/external/zstd/lib/legacy/ |
D | zstd_v06.c | 3292 U32 const llCode = FSEv06_peekSymbol(&(seqState->stateLL)); in ZSTDv06_decodeSequence() local 3296 U32 const llBits = LL_bits[llCode]; in ZSTDv06_decodeSequence() 3328 if (llCode == 0 && offset <= 1) offset = 1-offset; in ZSTDv06_decodeSequence() 3353 …seq->litLength = LL_base[llCode] + ((llCode>15) ? BITv06_readBits(&(seqState->DStream), llBits) : … in ZSTDv06_decodeSequence()
|
D | zstd_v07.c | 3522 U32 const llCode = FSEv07_peekSymbol(&(seqState->stateLL)); in ZSTDv07_decodeSequence() local 3526 U32 const llBits = LL_bits[llCode]; in ZSTDv07_decodeSequence() 3558 if ((llCode == 0) & (offset <= 1)) offset = 1-offset; in ZSTDv07_decodeSequence() 3578 …seq.litLength = LL_base[llCode] + ((llCode>15) ? BITv07_readBits(&(seqState->DStream), llBits) : 0… in ZSTDv07_decodeSequence()
|
/external/zstd/lib/dictBuilder/ |
D | zdict.c | 653 { const BYTE* codePtr = seqStorePtr->llCode; in ZDICT_countEStats()
|