Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h314 ZSTD_longLengthType_e longLengthType; member
333 if (seqStore->longLengthType == ZSTD_llt_literalLength) { in ZSTD_getSequenceLength()
336 if (seqStore->longLengthType == ZSTD_llt_matchLength) { in ZSTD_getSequenceLength()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_compress_internal.h636 … assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */ in ZSTD_storeSeq()
637 seqStorePtr->longLengthType = ZSTD_llt_literalLength; in ZSTD_storeSeq()
649 … assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */ in ZSTD_storeSeq()
650 seqStorePtr->longLengthType = ZSTD_llt_matchLength; in ZSTD_storeSeq()
H A Dzstd_compress.c2404 if (seqStorePtr->longLengthType==ZSTD_llt_literalLength) in ZSTD_seqToCodes()
2406 if (seqStorePtr->longLengthType==ZSTD_llt_matchLength) in ZSTD_seqToCodes()
2809 ssPtr->longLengthType = ZSTD_llt_none; in ZSTD_resetSeqStore()
2919 if (seqStore->longLengthType == ZSTD_llt_literalLength) { in ZSTD_copyBlockSequences()
2921 } else if (seqStore->longLengthType == ZSTD_llt_matchLength) { in ZSTD_copyBlockSequences()
3374 if (i == seqStore->longLengthPos && seqStore->longLengthType == ZSTD_llt_literalLength) { in ZSTD_countSeqStoreLiteralsBytes()
3389 if (i == seqStore->longLengthPos && seqStore->longLengthType == ZSTD_llt_matchLength) { in ZSTD_countSeqStoreMatchBytes()
3413 if (originalSeqStore->longLengthType != ZSTD_llt_none) { in ZSTD_deriveSeqStoreChunk()
3415 resultSeqStore->longLengthType = ZSTD_llt_none; in ZSTD_deriveSeqStoreChunk()