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

  /src/external/bsd/zstd/dist/lib/common/
zstd_internal.h 110 #define MaxOff 31
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)
  /src/external/bsd/zstd/dist/lib/legacy/
zstd_v01.c 1293 #define MaxOff ((1<<Offbits)-1)
1574 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL and MaxOff */
1605 { U32 max = MaxOff;
zstd_v03.c 2304 #define MaxOff 31
2539 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL and MaxOff */
2565 FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */
2571 { U32 max = MaxOff;
2645 static const size_t offsetPrefix[MaxOff+1] = { /* note : size_t faster than U32 */
2650 offsetCode = FSE_decodeSymbol(&(seqState->stateOffb), &(seqState->DStream)); /* <= maxOff, by table construction */
zstd_v02.c 2664 #define MaxOff 31
2899 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL and MaxOff */
2925 FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */
2931 { U32 max = MaxOff;
3005 static const size_t offsetPrefix[MaxOff+1] = { /* note : size_t faster than U32 */
3010 offsetCode = FSE_decodeSymbol(&(seqState->stateOffb), &(seqState->DStream)); /* <= maxOff, by table construction */
zstd_v04.c 317 #define MaxOff ((1<<Offbits)- 1)
2671 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL >= MaxOff */
2697 FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */
2703 { U32 max = MaxOff;
2773 { static const U32 offsetPrefix[MaxOff+1] = {
2778 offsetCode = FSE_decodeSymbol(&(seqState->stateOffb), &(seqState->DStream)); /* <= maxOff, by table construction */
zstd_v05.c 424 #define MaxOff ((1<<Offbits)- 1)
2992 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL >= MaxOff */
3024 FSEv05_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */
3035 { unsigned max = MaxOff;
3118 static const U32 offsetPrefix[MaxOff+1] = {
3122 U32 offsetCode = FSEv05_peakSymbol(&(seqState->stateOffb)); /* <= maxOff, by table construction */
3624 short offcodeNCount[MaxOff+1];
3625 unsigned offcodeMaxValue=MaxOff, offcodeLog;
zstd_v06.c 443 #define MaxOff 28
444 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
474 static const S16 OF_defaultNorm[MaxOff+1] = { 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,
3200 { size_t const bhSize = ZSTDv06_buildSeqTable(DTableOffb, Offtype, MaxOff, OffFSELog, ip, iend-ip, OF_defaultNorm, OF_defaultNormLog, flagRepeatTable);
3234 U32 const ofCode = FSEv06_peekSymbol(&(seqState->stateOffb)); /* <= maxOff, by table construction */
3252 static const U32 OF_base[MaxOff+1] = {
3767 { short offcodeNCount[MaxOff+1];
3768 U32 offcodeMaxValue=MaxOff, offcodeLog;
zstd_v07.c 2677 #define MaxOff 28
2678 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
2708 static const S16 OF_defaultNorm[MaxOff+1] = { 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,
3431 { size_t const ofhSize = ZSTDv07_buildSeqTable(DTableOffb, OFtype, MaxOff, OffFSELog, ip, iend-ip, OF_defaultNorm, OF_defaultNormLog, flagRepeatTable);
3465 U32 const ofCode = FSEv07_peekSymbol(&(seqState->stateOffb)); /* <= maxOff, by table construction */
3483 static const U32 OF_base[MaxOff+1] = {
4051 { short offcodeNCount[MaxOff+1];
4052 U32 offcodeMaxValue=MaxOff, offcodeLog;

Completed in 36 milliseconds