Home
last modified time | relevance | path

Searched refs:longLengthType (Results 1 – 3 of 3) sorted by relevance

/linux-6.12.1/lib/zstd/common/
Dzstd_internal.h304 ZSTD_longLengthType_e longLengthType; member
323 if (seqStore->longLengthType == ZSTD_llt_literalLength) { in ZSTD_getSequenceLength()
326 if (seqStore->longLengthType == ZSTD_llt_matchLength) { in ZSTD_getSequenceLength()
/linux-6.12.1/lib/zstd/compress/
Dzstd_compress_internal.h624 … assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */ in ZSTD_storeSeq()
625 seqStorePtr->longLengthType = ZSTD_llt_literalLength; in ZSTD_storeSeq()
637 … assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */ in ZSTD_storeSeq()
638 seqStorePtr->longLengthType = ZSTD_llt_matchLength; in ZSTD_storeSeq()
Dzstd_compress.c2313 if (seqStorePtr->longLengthType==ZSTD_llt_literalLength) in ZSTD_seqToCodes()
2315 if (seqStorePtr->longLengthType==ZSTD_llt_matchLength) in ZSTD_seqToCodes()
2718 ssPtr->longLengthType = ZSTD_llt_none; in ZSTD_resetSeqStore()
2828 if (seqStore->longLengthType == ZSTD_llt_literalLength) { in ZSTD_copyBlockSequences()
2830 } else if (seqStore->longLengthType == ZSTD_llt_matchLength) { in ZSTD_copyBlockSequences()
3283 if (i == seqStore->longLengthPos && seqStore->longLengthType == ZSTD_llt_literalLength) { in ZSTD_countSeqStoreLiteralsBytes()
3298 if (i == seqStore->longLengthPos && seqStore->longLengthType == ZSTD_llt_matchLength) { in ZSTD_countSeqStoreMatchBytes()
3322 if (originalSeqStore->longLengthType != ZSTD_llt_none) { in ZSTD_deriveSeqStoreChunk()
3324 resultSeqStore->longLengthType = ZSTD_llt_none; in ZSTD_deriveSeqStoreChunk()