Searched refs:Offtype (Results 1 – 8 of 8) sorted by relevance
| /freebsd-12.1/sys/contrib/zstd/tests/ |
| H A D | decodecorpus.c | 805 U32 LLtype, Offtype, MLtype; /* compressed, raw or rle */ in writeSequences() local 872 Offtype = set_rle; in writeSequences() 876 Offtype = set_repeat; in writeSequences() 879 Offtype = set_basic; in writeSequences() 889 Offtype = 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 D | zstd_v01.c | 1573 U32 LLtype, Offtype, MLtype; in ZSTDv01_decodeSeqHeaders() local 1583 Offtype = (*ip >> 4) & 3; in ZSTDv01_decodeSeqHeaders() 1627 switch(Offtype) in ZSTDv01_decodeSeqHeaders()
|
| H A D | zstd_v03.c | 2552 U32 LLtype, Offtype, MLtype; in ZSTD_decodeSeqHeaders() local 2562 Offtype = (*ip >> 4) & 3; in ZSTD_decodeSeqHeaders() 2606 switch(Offtype) in ZSTD_decodeSeqHeaders()
|
| H A D | zstd_v02.c | 2911 U32 LLtype, Offtype, MLtype; in ZSTD_decodeSeqHeaders() local 2921 Offtype = (*ip >> 4) & 3; in ZSTD_decodeSeqHeaders() 2965 switch(Offtype) in ZSTD_decodeSeqHeaders()
|
| H A D | zstd_v04.c | 2742 U32 LLtype, Offtype, MLtype; in ZSTD_decodeSeqHeaders() local 2752 Offtype = (*ip >> 4) & 3; in ZSTD_decodeSeqHeaders() 2796 switch(Offtype) in ZSTD_decodeSeqHeaders()
|
| H A D | zstd_v05.c | 2998 U32 LLtype, Offtype, MLtype; in ZSTDv05_decodeSeqHeaders() local 3016 Offtype = (*ip >> 4) & 3; in ZSTDv05_decodeSeqHeaders() 3065 switch(Offtype) in ZSTDv05_decodeSeqHeaders()
|
| H A D | zstd_v06.c | 3244 U32 const Offtype = (*ip >> 4) & 3; in ZSTDv06_decodeSeqHeaders() local 3256 …{ size_t const bhSize = ZSTDv06_buildSeqTable(DTableOffb, Offtype, MaxOff, OffFSELog, ip, iend-i… in ZSTDv06_decodeSeqHeaders()
|
| /freebsd-12.1/sys/contrib/zstd/lib/compress/ |
| H A D | zstd_compress.c | 1713 U32 LLtype, Offtype, MLtype; /* compressed, raw or rle */ in ZSTD_compressSequences_internal() local 1784 …Offtype = ZSTD_selectEncodingType(&nextEntropy->offcode_repeatMode, mostFrequent, nbSeq, OF_defaul… in ZSTD_compressSequences_internal() 1785 …Size = ZSTD_buildCTable(op, oend - op, CTable_OffsetBits, OffFSELog, (symbolEncodingType_e)Offtype, in ZSTD_compressSequences_internal() 1806 *seqHead = (BYTE)((LLtype<<6) + (Offtype<<4) + (MLtype<<2)); in ZSTD_compressSequences_internal()
|