Searched refs:MaxOff (Results 1 - 17 of 17) sorted by relevance

/freebsd-13-stable/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress_internal.h37 static UNUSED_ATTR const U32 OF_base[MaxOff+1] = {
43 static UNUSED_ATTR const U32 OF_bits[MaxOff+1] = {
H A Dzstd_decompress.c1097 { short offcodeNCount[MaxOff+1];
1098 unsigned offcodeMaxValue = MaxOff, offcodeLog;
1101 RETURN_ERROR_IF(offcodeMaxValue > MaxOff, dictionary_corrupted, "");
H A Dzstd_decompress_block.c629 OFtype, MaxOff, OffFSELog,
961 assert(ofBits <= MaxOff);
/freebsd-13-stable/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h182 #define MaxOff 31 macro
183 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
191 #define ZSTD_MAX_FSE_HEADERS_SIZE (((MaxML + 1) * MLFSELog + (MaxLL + 1) * LLFSELog + (MaxOff + 1) * OffFSELog + 7) / 8)
/freebsd-13-stable/sys/contrib/zstd/lib/compress/
H A Dzstd_opt.c163 for (of=0; of<=MaxOff; of++) {
193 for (of=0; of<=MaxOff; of++)
196 optPtr->offCodeSum = MaxOff+1;
206 optPtr->offCodeSum = ZSTD_downscaleStat(optPtr->offCodeFreq, MaxOff, 0);
308 assert(offCode <= MaxOff);
1243 optPtr->offCodeSum = ZSTD_upscaleStat(optPtr->offCodeFreq, MaxOff, 0);
H A Dzstd_compress_superblock.c221 unsigned max = MaxOff;
648 cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->ofType, ofCodeTable, MaxOff,
H A Dzstd_compress.c1286 + ZSTD_cwksp_alloc_size((MaxOff+1) * sizeof(U32))
1572 ms->opt.offCodeFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxOff+1) * sizeof(unsigned));
2253 { unsigned max = MaxOff;
3170 short offcodeNCount[MaxOff+1];
3171 unsigned offcodeMaxValue = MaxOff;
3199 offcodeNCount, MaxOff, offcodeLog,
3241 U32 offcodeMax = MaxOff;
3247 bs->entropy.fse.offcode_repeatMode = ZSTD_dictNCountRepeat(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff));
H A Dzstd_compress_internal.h71 FSE_CTable offcodeCTable[FSE_CTABLE_SIZE_U32(OffFSELog, MaxOff)];
121 unsigned* offCodeFreq; /* table of offCode statistics, of size (MaxOff+1) */
/freebsd-13-stable/sys/contrib/zstd/lib/legacy/
H A Dzstd_v03.c2370 #define MaxOff 31 macro
2605 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL and MaxOff */
2631 FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */
2637 { U32 max = MaxOff;
2711 static const size_t offsetPrefix[MaxOff+1] = { /* note : size_t faster than U32 */
H A Dzstd_v05.c479 #define MaxOff ((1<<Offbits)- 1) macro
3048 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL >= MaxOff */
3080 FSEv05_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */
3091 { unsigned max = MaxOff;
3174 static const U32 offsetPrefix[MaxOff+1] = {
3673 short offcodeNCount[MaxOff+1];
3674 unsigned offcodeMaxValue=MaxOff, offcodeLog;
H A Dzstd_v06.c502 #define MaxOff 28 macro
503 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
533 static const S16 OF_defaultNorm[MaxOff+1] = { 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,
3260 { size_t const bhSize = ZSTDv06_buildSeqTable(DTableOffb, Offtype, MaxOff, OffFSELog, ip, iend-ip, OF_defaultNorm, OF_defaultNormLog, flagRepeatTable);
3312 static const U32 OF_base[MaxOff+1] = {
3820 { short offcodeNCount[MaxOff+1];
3821 U32 offcodeMaxValue=MaxOff, offcodeLog;
H A Dzstd_v07.c2736 #define MaxOff 28 macro
2737 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
2767 static const S16 OF_defaultNorm[MaxOff+1] = { 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,
3490 { size_t const ofhSize = ZSTDv07_buildSeqTable(DTableOffb, OFtype, MaxOff, OffFSELog, ip, iend-ip, OF_defaultNorm, OF_defaultNormLog, flagRepeatTable);
3542 static const U32 OF_base[MaxOff+1] = {
4107 { short offcodeNCount[MaxOff+1];
4108 U32 offcodeMaxValue=MaxOff, offcodeLog;
H A Dzstd_v01.c1335 #define MaxOff ((1<<Offbits)-1) macro
1616 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL and MaxOff */
1647 { U32 max = MaxOff;
H A Dzstd_v02.c2729 #define MaxOff 31 macro
2964 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL and MaxOff */
2990 FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */
2996 { U32 max = MaxOff;
3070 static const size_t offsetPrefix[MaxOff+1] = { /* note : size_t faster than U32 */
H A Dzstd_v04.c376 #define MaxOff ((1<<Offbits)- 1) macro
2731 S16 norm[MaxML+1]; /* assumption : MaxML >= MaxLL >= MaxOff */
2757 FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */
2763 { U32 max = MaxOff;
2833 { static const U32 offsetPrefix[MaxOff+1] = {
/freebsd-13-stable/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.c6479 #define MaxOff 31 macro
6480 #define MaxSeq MAX(MaxLL, MaxML) /* Assumption : MaxOff < MaxLL,MaxML */
9983 FSE_CTable offcodeCTable[FSE_CTABLE_SIZE_U32(OffFSELog, MaxOff)];
10016 unsigned* offCodeFreq; /* table of offCode statistics, of size (MaxOff+1) */
11929 unsigned max = MaxOff;
12352 cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->ofType, ofCodeTable, MaxOff,
14198 + ZSTD_cwksp_alloc_size((MaxOff+1) * sizeof(U32))
14475 ms->opt.offCodeFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxOff+1) * sizeof(unsigned));
15147 { unsigned max = MaxOff;
16018 offcodeNCount, MaxOff, offcodeLo
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp3693 int64_t MinOff, MaxOff;
3695 MaxOff))
3715 MaxOff))
3726 assert(MinOff < MaxOff && "Unexpected Min/Max offsets");
3728 if (MinOff <= NewOffset && NewOffset <= MaxOff)
3731 NewOffset = NewOffset < 0 ? MinOff : MaxOff;

Completed in 564 milliseconds