Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress_internal.h37 static const U32 OF_base[MaxOff+1] = {
43 static const U32 OF_bits[MaxOff+1] = {
H A Dzstd_decompress.c1085 { short offcodeNCount[MaxOff+1]; in ZSTD_loadDEntropy()
1086 unsigned offcodeMaxValue = MaxOff, offcodeLog; in ZSTD_loadDEntropy()
1089 RETURN_ERROR_IF(offcodeMaxValue > MaxOff, dictionary_corrupted, ""); in ZSTD_loadDEntropy()
H A Dzstd_decompress_block.c529 OFtype, MaxOff, OffFSELog, in ZSTD_decodeSeqHeaders()
852 assert(ofBits <= MaxOff); in ZSTD_decodeSequence()
/freebsd/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 U8 OF_bits[MaxOff+1] = {
H A Dzstd_decompress.c1363 { short offcodeNCount[MaxOff+1]; in ZSTD_loadDEntropy()
1364 unsigned offcodeMaxValue = MaxOff, offcodeLog; in ZSTD_loadDEntropy()
1367 RETURN_ERROR_IF(offcodeMaxValue > MaxOff, dictionary_corrupted, ""); in ZSTD_loadDEntropy()
H A Dzstd_decompress_block.c705 OFtype, MaxOff, OffFSELog, in ZSTD_decodeSeqHeaders()
1204 assert(ofBits <= MaxOff);
/freebsd/sys/contrib/zstd/lib/common/
H A Dzstd_internal.h110 #define MaxOff 31 macro
119 #define ZSTD_MAX_FSE_HEADERS_SIZE (((MaxML + 1) * MLFSELog + (MaxLL + 1) * LLFSELog + (MaxOff + 1) …
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_opt.c163 for (of=0; of<=MaxOff; of++) { in ZSTD_rescaleFreqs()
193 for (of=0; of<=MaxOff; of++) in ZSTD_rescaleFreqs()
196 optPtr->offCodeSum = MaxOff+1; in ZSTD_rescaleFreqs()
206 optPtr->offCodeSum = ZSTD_downscaleStat(optPtr->offCodeFreq, MaxOff, 0); in ZSTD_rescaleFreqs()
308 assert(offCode <= MaxOff); in ZSTD_updateStats()
1098 optPtr->offCodeSum = ZSTD_upscaleStat(optPtr->offCodeFreq, MaxOff, 0); in ZSTD_upscaleStats()
H A Dzstd_compress_superblock.c221 unsigned max = MaxOff; in ZSTD_buildSuperBlockEntropy_sequences()
648 … cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->ofType, ofCodeTable, MaxOff, in ZSTD_estimateSubBlockSize_sequences()
H A Dzstd_compress.c1114 + ZSTD_cwksp_alloc_size((MaxOff+1) * sizeof(U32)) in ZSTD_sizeof_matchState()
1391 … ms->opt.offCodeFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxOff+1) * sizeof(unsigned)); in ZSTD_reset_matchState()
2063 { unsigned max = MaxOff; in ZSTD_compressSequences_internal()
2934 offcodeNCount, MaxOff, offcodeLog, in ZSTD_loadCEntropy()
2998 short offcodeNCount[MaxOff+1]; in ZSTD_loadZstdDictionary()
2999 unsigned offcodeMaxValue = MaxOff; in ZSTD_loadZstdDictionary()
3013 U32 offcodeMax = MaxOff; in ZSTD_loadZstdDictionary()
3019 …ORWARD_IF_ERROR(ZSTD_checkDictNCount(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff)), ""); in ZSTD_loadZstdDictionary()
H A Dzstd_compress_internal.h72 FSE_CTable offcodeCTable[FSE_CTABLE_SIZE_U32(OffFSELog, MaxOff)];
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_opt.c183 for (of=0; of<=MaxOff; of++) { in ZSTD_rescaleFreqs()
217 { unsigned const baseOFCfreqs[MaxOff+1] = { in ZSTD_rescaleFreqs()
224 optPtr->offCodeSum = sum_u32(baseOFCfreqs, MaxOff+1); in ZSTD_rescaleFreqs()
236 optPtr->offCodeSum = ZSTD_scaleStats(optPtr->offCodeFreq, MaxOff, 11); in ZSTD_rescaleFreqs()
349 assert(offCode <= MaxOff); in ZSTD_updateStats()
H A Dzstd_compress_superblock.c372 … cSeqSizeEstimate += ZSTD_estimateSubBlockSize_symbolType(fseMetadata->ofType, ofCodeTable, MaxOff, in ZSTD_estimateSubBlockSize_sequences()
H A Dzstd_compress.c1437 + ZSTD_cwksp_aligned_alloc_size((MaxOff+1) * sizeof(U32)) in ZSTD_sizeof_matchState()
1773 … ms->opt.offCodeFreq = (unsigned*)ZSTD_cwksp_reserve_aligned(ws, (MaxOff+1) * sizeof(unsigned)); in ZSTD_reset_matchState()
2503 { unsigned max = MaxOff; in ZSTD_buildSequencesStatistics()
3311 …qSizeEstimate += ZSTD_estimateBlockSize_symbolType(fseMetadata->ofType, ofCodeTable, nbSeq, MaxOff, in ZSTD_estimateBlockSize_sequences()
4317 short offcodeNCount[MaxOff+1]; in ZSTD_loadCEntropy()
4318 unsigned offcodeMaxValue = MaxOff; in ZSTD_loadCEntropy()
4346 offcodeNCount, MaxOff, offcodeLog, in ZSTD_loadCEntropy()
4388 U32 offcodeMax = MaxOff; in ZSTD_loadCEntropy()
4394 …ffcode_repeatMode = ZSTD_dictNCountRepeat(offcodeNCount, offcodeMaxValue, MIN(offcodeMax, MaxOff)); in ZSTD_loadCEntropy()
H A Dzstd_compress_internal.h71 FSE_CTable offcodeCTable[FSE_CTABLE_SIZE_U32(OffFSELog, MaxOff)];
/freebsd/sys/contrib/openzfs/module/zstd/lib/common/
H A Dzstd_internal.h181 #define MaxOff 31 macro
/freebsd/sys/contrib/zstd/lib/legacy/
H A Dzstd_v05.c476 #define MaxOff ((1<<Offbits)- 1) macro
3076 … FSEv05_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */ in ZSTDv05_decodeSeqHeaders()
3087 { unsigned max = MaxOff; in ZSTDv05_decodeSeqHeaders()
3170 static const U32 offsetPrefix[MaxOff+1] = { in ZSTDv05_decodeSequence()
3669 short offcodeNCount[MaxOff+1]; in ZSTDv05_loadEntropy()
3670 unsigned offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv05_loadEntropy()
H A Dzstd_v06.c499 #define MaxOff 28 macro
530 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()
3816 { short offcodeNCount[MaxOff+1]; in ZSTDv06_loadEntropy()
3817 U32 offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv06_loadEntropy()
H A Dzstd_v03.c2366 #define MaxOff 31 macro
2627 … FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */ in ZSTD_decodeSeqHeaders()
2633 { U32 max = MaxOff; in ZSTD_decodeSeqHeaders()
2707 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
2763 static const S16 OF_defaultNorm[MaxOff+1] = { 1, 1, 1, 1, 1, 1, 2, 2, 2, 1, 1, 1, 1, 1, 1, 1,
3486 …{ size_t const ofhSize = ZSTDv07_buildSeqTable(DTableOffb, OFtype, MaxOff, OffFSELog, ip, iend-i… in ZSTDv07_decodeSeqHeaders()
3538 static const U32 OF_base[MaxOff+1] = { in ZSTDv07_decodeSequence()
4103 { short offcodeNCount[MaxOff+1]; in ZSTDv07_loadEntropy()
4104 U32 offcodeMaxValue=MaxOff, offcodeLog; in ZSTDv07_loadEntropy()
H A Dzstd_v02.c2725 #define MaxOff 31 macro
2986 … FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */ in ZSTD_decodeSeqHeaders()
2992 { U32 max = MaxOff; in ZSTD_decodeSeqHeaders()
3066 static const size_t offsetPrefix[MaxOff+1] = { /* note : size_t faster than U32 */ in ZSTD_decodeSequence()
H A Dzstd_v04.c373 #define MaxOff ((1<<Offbits)- 1) macro
2753 … FSE_buildDTable_rle(DTableOffb, *ip++ & MaxOff); /* if *ip > MaxOff, data is corrupted */ in ZSTD_decodeSeqHeaders()
2759 { U32 max = MaxOff; in ZSTD_decodeSeqHeaders()
2829 { static const U32 offsetPrefix[MaxOff+1] = { in ZSTD_decodeSequence()
H A Dzstd_v01.c1331 #define MaxOff ((1<<Offbits)-1) macro
1643 { U32 max = MaxOff; in ZSTDv01_decodeSeqHeaders()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp5709 int64_t MinOff, MaxOff; in isAArch64FrameOffsetLegal() local
5711 MaxOff)) in isAArch64FrameOffsetLegal()
5731 MaxOff)) in isAArch64FrameOffsetLegal()
5742 assert(MinOff < MaxOff && "Unexpected Min/Max offsets"); in isAArch64FrameOffsetLegal()
5744 if (MinOff <= NewOffset && NewOffset <= MaxOff) in isAArch64FrameOffsetLegal()
5747 NewOffset = NewOffset < 0 ? MinOff : MaxOff; in isAArch64FrameOffsetLegal()