Home
last modified time | relevance | path

Searched refs:MaxOff (Results 1 – 14 of 14) sorted by relevance

/freebsd-12.1/sys/contrib/zstd/lib/compress/
H A Dzstd_opt.c58 for (u=0; u<=MaxOff; u++) in ZSTD_rescaleFreqs()
60 optPtr->offCodeSum = (MaxOff+1); in ZSTD_rescaleFreqs()
81 for (u=0; u<=MaxOff; u++) { in ZSTD_rescaleFreqs()
213 assert(offCode <= MaxOff); in ZSTD_updateStats()
H A Dzstd_compress.c676 … size_t const optPotentialSpace = ((MaxML+1) + (MaxLL+1) + (MaxOff+1) + (1<<Litbits)) * sizeof(U32) in ZSTD_sizeof_matchState()
924 ptr = ms->opt.offCodeFreq + (MaxOff+1); in ZSTD_reset_matchState()
1778 { U32 max = MaxOff; in ZSTD_compressSequences_internal()
2263 short offcodeNCount[MaxOff+1]; in ZSTD_loadZstdDictionary()
2264 unsigned offcodeMaxValue = MaxOff; in ZSTD_loadZstdDictionary()
2321 U32 offcodeMax = MaxOff; in ZSTD_loadZstdDictionary()
2327 CHECK_F (ZSTD_checkDictNCount(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff))); in ZSTD_loadZstdDictionary()
H A Dzstd_compress_internal.h57 FSE_CTable offcodeCTable[FSE_CTABLE_SIZE_U32(OffFSELog, MaxOff)];
/freebsd-12.1/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h138 #define MaxOff 31 macro
/freebsd-12.1/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c915 static const U32 OF_base[MaxOff+1] = {
921 static const U32 OF_bits[MaxOff+1] = {
981 OFtype, MaxOff, OffFSELog, in ZSTD_decodeSeqHeaders()
1286 assert(ofBits <= MaxOff); in ZSTD_decodeSequence()
1428 assert(ofBits <= MaxOff); in ZSTD_decodeSequenceLong()
2187 { short offcodeNCount[MaxOff+1]; in ZSTD_loadEntropy()
2188 U32 offcodeMaxValue = MaxOff, offcodeLog; in ZSTD_loadEntropy()
2191 if (offcodeMaxValue > MaxOff) return ERROR(dictionary_corrupted); in ZSTD_loadEntropy()
/freebsd-12.1/sys/contrib/zstd/lib/legacy/
H A Dzstd_v06.c498 #define MaxOff 28 macro
527 static const S16 OF_defaultNorm[MaxOff+1] = { 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,
3256 …{ size_t const bhSize = ZSTDv06_buildSeqTable(DTableOffb, Offtype, MaxOff, OffFSELog, ip, iend-i… in ZSTDv06_decodeSeqHeaders()
3308 static const U32 OF_base[MaxOff+1] = { in ZSTDv06_decodeSequence()
3788 { short offcodeNCount[MaxOff+1]; in ZSTDv06_loadEntropy()
3789 U32 offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv06_loadEntropy()
H A Dzstd_v05.c475 #define MaxOff ((1<<Offbits)- 1) macro
3070 … FSEv05_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */ in ZSTDv05_decodeSeqHeaders()
3081 { U32 max = MaxOff; in ZSTDv05_decodeSeqHeaders()
3161 static const U32 offsetPrefix[MaxOff+1] = { in ZSTDv05_decodeSequence()
3632 short offcodeNCount[MaxOff+1]; in ZSTDv05_loadEntropy()
3633 U32 offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv05_loadEntropy()
H A Dzstd_v03.c2355 #define MaxOff 31 macro
2611 … FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */ in ZSTD_decodeSeqHeaders()
2617 { U32 max = MaxOff; in ZSTD_decodeSeqHeaders()
2691 static const size_t offsetPrefix[MaxOff+1] = { /* note : size_t faster than U32 */ in ZSTD_decodeSequence()
H A Dzstd_v07.c2732 #define MaxOff 28 macro
2761 static const S16 OF_defaultNorm[MaxOff+1] = { 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,
3482 …{ size_t const ofhSize = ZSTDv07_buildSeqTable(DTableOffb, OFtype, MaxOff, OffFSELog, ip, iend-i… in ZSTDv07_decodeSeqHeaders()
3534 static const U32 OF_base[MaxOff+1] = { in ZSTDv07_decodeSequence()
4066 { short offcodeNCount[MaxOff+1]; in ZSTDv07_loadEntropy()
4067 U32 offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv07_loadEntropy()
H A Dzstd_v02.c2714 #define MaxOff 31 macro
2970 … FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */ in ZSTD_decodeSeqHeaders()
2976 { U32 max = MaxOff; in ZSTD_decodeSeqHeaders()
3050 static const size_t offsetPrefix[MaxOff+1] = { /* note : size_t faster than U32 */ in ZSTD_decodeSequence()
H A Dzstd_v04.c422 #define MaxOff ((1<<Offbits)- 1) macro
2801 … FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */ in ZSTD_decodeSeqHeaders()
2807 { U32 max = MaxOff; in ZSTD_decodeSeqHeaders()
2878 { static const U32 offsetPrefix[MaxOff+1] = { in ZSTD_decodeSequence()
H A Dzstd_v01.c1322 #define MaxOff ((1<<Offbits)-1) macro
1637 { U32 max = MaxOff; in ZSTDv01_decodeSeqHeaders()
/freebsd-12.1/sys/contrib/zstd/tests/
H A Ddecodecorpus.c204 FSE_CTable offcodeCTable [FSE_CTABLE_SIZE_U32(OffFSELog, MaxOff)];
867 { U32 max = MaxOff; in writeSequences()
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp3360 int MaxOff = (1 << (MaskBits - IsSigned)) - 1; in isAArch64FrameOffsetLegal() local
3361 int MinOff = (IsSigned ? (-MaxOff - 1) : 0); in isAArch64FrameOffsetLegal()
3362 if (Offset >= MinOff && Offset <= MaxOff) { in isAArch64FrameOffsetLegal()
3367 int NewOff = Offset < 0 ? MinOff : MaxOff; in isAArch64FrameOffsetLegal()