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

/linux-master/lib/zstd/common/
H A Dzstd_internal.h284 ZSTD_llt_none = 0, /* no longLengthType */
300 /* longLengthPos and longLengthType to allow us to represent either a single litLength or matchLength
304 ZSTD_longLengthType_e longLengthType; member in struct:__anon161
315 * indicated by longLengthPos and longLengthType, and adds MINMATCH back to matchLength.
323 if (seqStore->longLengthType == ZSTD_llt_literalLength) {
326 if (seqStore->longLengthType == ZSTD_llt_matchLength) {
/linux-master/lib/zstd/compress/
H A Dzstd_compress_internal.h624 assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */
625 seqStorePtr->longLengthType = ZSTD_llt_literalLength;
637 assert(seqStorePtr->longLengthType == ZSTD_llt_none); /* there can only be a single long length */
638 seqStorePtr->longLengthType = ZSTD_llt_matchLength;
H A Dzstd_compress.c2313 if (seqStorePtr->longLengthType==ZSTD_llt_literalLength)
2315 if (seqStorePtr->longLengthType==ZSTD_llt_matchLength)
2718 ssPtr->longLengthType = ZSTD_llt_none;
2828 if (seqStore->longLengthType == ZSTD_llt_literalLength) {
2830 } else if (seqStore->longLengthType == ZSTD_llt_matchLength) {
3283 if (i == seqStore->longLengthPos && seqStore->longLengthType == ZSTD_llt_literalLength) {
3298 if (i == seqStore->longLengthPos && seqStore->longLengthType == ZSTD_llt_matchLength) {
3322 if (originalSeqStore->longLengthType != ZSTD_llt_none) {
3324 resultSeqStore->longLengthType = ZSTD_llt_none;

Completed in 142 milliseconds