HomeSort by: relevance | last modified time | path
    Searched defs:MaxLL (Results 1 - 8 of 8) sorted by relevancy

  /src/external/bsd/zstd/dist/lib/common/
zstd_internal.h 108 #define MaxLL 35
111 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
121 #define ZSTD_MAX_FSE_HEADERS_SIZE (((MaxML + 1) * MLFSELog + (MaxLL + 1) * LLFSELog + (MaxOff + 1) * OffFSELog + 7) / 8)
123 static UNUSED_ATTR const U8 LL_bits[MaxLL+1] = {
130 static UNUSED_ATTR const S16 LL_defaultNorm[MaxLL+1] = {
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 1292 #define MaxLL ((1<<LLbits )-1)
1299 #define MaxSeq MAX(MaxLL, MaxML)
1574 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL and MaxOff */
1587 { U32 max = MaxLL;
1665 if (litLength == MaxLL)
zstd_v03.c 2303 #define MaxLL ((1<<LLbits )-1)
2310 #define MaxSeq MAX(MaxLL, MaxML)
2539 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL and MaxOff */
2552 { U32 max = MaxLL;
2631 if (litLength == MaxLL)
zstd_v02.c 2663 #define MaxLL ((1<<LLbits )-1)
2670 #define MaxSeq MAX(MaxLL, MaxML)
2899 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL and MaxOff */
2912 { U32 max = MaxLL;
2991 if (litLength == MaxLL)
zstd_v04.c 316 #define MaxLL ((1<<LLbits) - 1)
321 #define MaxSeq MAX(MaxLL, MaxML)
2671 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL >= MaxOff */
2684 { U32 max = MaxLL;
2762 if (litLength == MaxLL) {
zstd_v05.c 423 #define MaxLL ((1<<LLbits) - 1)
428 #define MaxSeq MAX(MaxLL, MaxML)
2992 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL >= MaxOff */
3011 { unsigned max = MaxLL;
3101 if (litLength == MaxLL) {
3628 short litlengthNCount[MaxLL+1];
3629 unsigned litlengthMaxValue = MaxLL, litlengthLog;
zstd_v06.c 442 #define MaxLL 35
444 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
456 static const U32 LL_bits[MaxLL+1] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
459 static const S16 LL_defaultNorm[MaxLL+1] = { 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1,
3196 { size_t const bhSize = ZSTDv06_buildSeqTable(DTableLL, LLtype, MaxLL, LLFSELog, ip, iend-ip, LL_defaultNorm, LL_defaultNormLog, flagRepeatTable);
3241 static const U32 LL_base[MaxLL+1] = {
3789 { short litlengthNCount[MaxLL+1];
3790 unsigned litlengthMaxValue = MaxLL, litlengthLog;
zstd_v07.c 2676 #define MaxLL 35
2678 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
2690 static const U32 LL_bits[MaxLL+1] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
2693 static const S16 LL_defaultNorm[MaxLL+1] = { 4, 3, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 1,
3427 { size_t const llhSize = ZSTDv07_buildSeqTable(DTableLL, LLtype, MaxLL, LLFSELog, ip, iend-ip, LL_defaultNorm, LL_defaultNormLog, flagRepeatTable);
3472 static const U32 LL_base[MaxLL+1] = {
4071 { short litlengthNCount[MaxLL+1];
4072 unsigned litlengthMaxValue = MaxLL, litlengthLog;

Completed in 68 milliseconds