Home
last modified time | relevance | path

Searched refs:LLtype (Results 1 – 10 of 10) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/tests/
H A Ddecodecorpus.c805 U32 LLtype, Offtype, MLtype; /* compressed, raw or rle */ in writeSequences() local
842 LLtype = set_rle; in writeSequences()
847 LLtype = set_repeat; in writeSequences()
851 LLtype = set_basic; in writeSequences()
862 LLtype = set_compressed; in writeSequences()
925 DISPLAYLEVEL(5, " LL type: %d OF type: %d ML type: %d\n", LLtype, Offtype, MLtype); in writeSequences()
927 *seqHead = (BYTE)((LLtype<<6) + (Offtype<<4) + (MLtype<<2)); in writeSequences()
/freebsd-12.1/sys/contrib/zstd/lib/legacy/
H A Dzstd_v01.c1573 U32 LLtype, Offtype, MLtype; in ZSTDv01_decodeSeqHeaders() local
1582 LLtype = *ip >> 6; in ZSTDv01_decodeSeqHeaders()
1610 switch(LLtype) in ZSTDv01_decodeSeqHeaders()
H A Dzstd_v03.c2552 U32 LLtype, Offtype, MLtype; in ZSTD_decodeSeqHeaders() local
2561 LLtype = *ip >> 6; in ZSTD_decodeSeqHeaders()
2589 switch(LLtype) in ZSTD_decodeSeqHeaders()
H A Dzstd_v02.c2911 U32 LLtype, Offtype, MLtype; in ZSTD_decodeSeqHeaders() local
2920 LLtype = *ip >> 6; in ZSTD_decodeSeqHeaders()
2948 switch(LLtype) in ZSTD_decodeSeqHeaders()
H A Dzstd_v04.c2742 U32 LLtype, Offtype, MLtype; in ZSTD_decodeSeqHeaders() local
2751 LLtype = *ip >> 6; in ZSTD_decodeSeqHeaders()
2779 switch(LLtype) in ZSTD_decodeSeqHeaders()
H A Dzstd_v05.c2998 U32 LLtype, Offtype, MLtype; in ZSTDv05_decodeSeqHeaders() local
3015 LLtype = *ip >> 6; in ZSTDv05_decodeSeqHeaders()
3042 switch(LLtype) in ZSTDv05_decodeSeqHeaders()
H A Dzstd_v06.c3243 { U32 const LLtype = *ip >> 6; in ZSTDv06_decodeSeqHeaders() local
3252 …{ size_t const bhSize = ZSTDv06_buildSeqTable(DTableLL, LLtype, MaxLL, LLFSELog, ip, iend-ip, LL… in ZSTDv06_decodeSeqHeaders()
H A Dzstd_v07.c3469 { U32 const LLtype = *ip >> 6; in ZSTDv07_decodeSeqHeaders() local
3478 …{ size_t const llhSize = ZSTDv07_buildSeqTable(DTableLL, LLtype, MaxLL, LLFSELog, ip, iend-ip, L… in ZSTDv07_decodeSeqHeaders()
/freebsd-12.1/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c1713 U32 LLtype, Offtype, MLtype; /* compressed, raw or rle */ in ZSTD_compressSequences_internal() local
1769LLtype = ZSTD_selectEncodingType(&nextEntropy->litlength_repeatMode, mostFrequent, nbSeq, LL_defau… in ZSTD_compressSequences_internal()
1770 …untSize = ZSTD_buildCTable(op, oend - op, CTable_LitLength, LLFSELog, (symbolEncodingType_e)LLtype, in ZSTD_compressSequences_internal()
1806 *seqHead = (BYTE)((LLtype<<6) + (Offtype<<4) + (MLtype<<2)); in ZSTD_compressSequences_internal()
/freebsd-12.1/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c965 { symbolEncodingType_e const LLtype = (symbolEncodingType_e)(*ip >> 6); in ZSTD_decodeSeqHeaders() local
972 LLtype, MaxLL, LLFSELog, in ZSTD_decodeSeqHeaders()