Home
last modified time | relevance | path

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

/linux/lib/zstd/compress/
H A Dzstd_compress_internal.h111 ZSTD_longLengthType_e longLengthType; member
130 if (seqStore->longLengthType == ZSTD_llt_literalLength) { in ZSTD_getSequenceLength()
133 if (seqStore->longLengthType == ZSTD_llt_matchLength) { in ZSTD_getSequenceLength()
737 … assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */ in ZSTD_storeSeqOnly()
738 seqStorePtr->longLengthType = ZSTD_llt_literalLength; in ZSTD_storeSeqOnly()
751 … assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */ in ZSTD_storeSeqOnly()
752 seqStorePtr->longLengthType = ZSTD_llt_matchLength; in ZSTD_storeSeqOnly()
H A Dzstd_compress.c2628 if (seqStorePtr->longLengthType==ZSTD_llt_literalLength) in ZSTD_seqToCodes()
2630 if (seqStorePtr->longLengthType==ZSTD_llt_matchLength) in ZSTD_seqToCodes()
3079 ssPtr->longLengthType = ZSTD_llt_none; in ZSTD_resetSeqStore()
3376 if (seqStore->longLengthType == ZSTD_llt_literalLength) { in ZSTD_copyBlockSequences()
3378 } else if (seqStore->longLengthType == ZSTD_llt_matchLength) { in ZSTD_copyBlockSequences()
3891 if (i == seqStore->longLengthPos && seqStore->longLengthType == ZSTD_llt_literalLength) { in ZSTD_countSeqStoreLiteralsBytes()
3906 if (i == seqStore->longLengthPos && seqStore->longLengthType == ZSTD_llt_matchLength) { in ZSTD_countSeqStoreMatchBytes()
3926 if (originalSeqStore->longLengthType != ZSTD_llt_none) { in ZSTD_deriveSeqStoreChunk()
3928 resultSeqStore->longLengthType = ZSTD_llt_none; in ZSTD_deriveSeqStoreChunk()
3988 …U32 const longLitLenIdx = seqStore->longLengthType == ZSTD_llt_literalLength ? seqStore->longLengt… in ZSTD_seqStore_resolveOffCodes()
[all …]