Home
last modified time | relevance | path

Searched refs:upperBound (Results 1 – 18 of 18) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryLocation.cpp201 LocationSize::upperBound(DL.getTypeStoreSize(II->getType())), in getForArgument()
208 LocationSize::upperBound( in getForArgument()
269 Size = LocationSize::upperBound(Len->getZExtValue()); in getForArgument()
281 : LocationSize::upperBound(Len->getZExtValue()); in getForArgument()
326 Arg, LocationSize::upperBound(LenCI->getZExtValue()), AATags); in getForArgument()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryLocation.h116 static LocationSize upperBound(uint64_t Value) { in upperBound() function
124 static LocationSize upperBound(TypeSize Value) { in upperBound() function
127 return upperBound(Value.getFixedValue()); in upperBound()
163 return upperBound(std::max(getValue(), Other.getValue())); in unionWith()
/freebsd/cddl/contrib/opensolaris/cmd/dtrace/test/tst/common/java_api/src/
H A DTestBean.java217 long upperBound; in getLogDistribution() local
233 upperBound = (nextPower == 0 ? -2L : in getLogDistribution()
235 if ((upperBound > 0) && ((upperBound * 2L) < 0)) { in getLogDistribution()
236 upperBound = Long.MAX_VALUE; in getLogDistribution()
238 bucket = new Distribution.Bucket(lowerBound, upperBound, n++); in getLogDistribution()
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress.c276 bounds.upperBound = ZSTD_maxCLevel(); in ZSTD_cParam_getBounds()
281 bounds.upperBound = ZSTD_WINDOWLOG_MAX; in ZSTD_cParam_getBounds()
286 bounds.upperBound = ZSTD_HASHLOG_MAX; in ZSTD_cParam_getBounds()
291 bounds.upperBound = ZSTD_CHAINLOG_MAX; in ZSTD_cParam_getBounds()
296 bounds.upperBound = ZSTD_SEARCHLOG_MAX; in ZSTD_cParam_getBounds()
301 bounds.upperBound = ZSTD_MINMATCH_MAX; in ZSTD_cParam_getBounds()
306 bounds.upperBound = ZSTD_TARGETLENGTH_MAX; in ZSTD_cParam_getBounds()
311 bounds.upperBound = ZSTD_STRATEGY_MAX; in ZSTD_cParam_getBounds()
316 bounds.upperBound = 1; in ZSTD_cParam_getBounds()
321 bounds.upperBound = 1; in ZSTD_cParam_getBounds()
[all …]
H A Dzstd_compress_internal.h362 if (value > bounds.upperBound) return 0; in ZSTD_cParam_withinBounds()
/freebsd/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_diag.cpp240 static Range *upperBound(MemoryLocation Loc, Range *Ranges, in upperBound() function
296 Range *InRange = upperBound(Min, Ranges, NumRanges); in PrintMemorySnippet()
300 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet()
320 InRange = upperBound(P, Ranges, NumRanges); in PrintMemorySnippet()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dzstd_compress.c394 bounds.upperBound = ZSTD_maxCLevel(); in ZSTD_cParam_getBounds()
399 bounds.upperBound = ZSTD_WINDOWLOG_MAX; in ZSTD_cParam_getBounds()
404 bounds.upperBound = ZSTD_HASHLOG_MAX; in ZSTD_cParam_getBounds()
409 bounds.upperBound = ZSTD_CHAINLOG_MAX; in ZSTD_cParam_getBounds()
414 bounds.upperBound = ZSTD_SEARCHLOG_MAX; in ZSTD_cParam_getBounds()
419 bounds.upperBound = ZSTD_MINMATCH_MAX; in ZSTD_cParam_getBounds()
424 bounds.upperBound = ZSTD_TARGETLENGTH_MAX; in ZSTD_cParam_getBounds()
429 bounds.upperBound = ZSTD_STRATEGY_MAX; in ZSTD_cParam_getBounds()
434 bounds.upperBound = 1; in ZSTD_cParam_getBounds()
439 bounds.upperBound = 1; in ZSTD_cParam_getBounds()
[all …]
H A Dzstd_compress_internal.h508 if (value > bounds.upperBound) return 0; in ZSTD_cParam_withinBounds()
/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c1685 size_t const max = (size_t)1 << bounds.upperBound; in ZSTD_DCtx_setMaxWindowSize()
1704 bounds.upperBound = ZSTD_WINDOWLOG_MAX; in ZSTD_dParam_getBounds()
1708 bounds.upperBound = (int)ZSTD_f_zstd1_magicless; in ZSTD_dParam_getBounds()
1713 bounds.upperBound = (int)ZSTD_bm_stable; in ZSTD_dParam_getBounds()
1717 bounds.upperBound = (int)ZSTD_d_ignoreChecksum; in ZSTD_dParam_getBounds()
1721 bounds.upperBound = (int)ZSTD_rmd_refMultipleDDicts; in ZSTD_dParam_getBounds()
1737 if (value > bounds.upperBound) return 0; in ZSTD_dParam_withinBounds()
/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress.c1387 size_t const max = (size_t)1 << bounds.upperBound; in ZSTD_DCtx_setMaxWindowSize()
1406 bounds.upperBound = ZSTD_WINDOWLOG_MAX; in ZSTD_dParam_getBounds()
1410 bounds.upperBound = (int)ZSTD_f_zstd1_magicless; in ZSTD_dParam_getBounds()
1415 bounds.upperBound = (int)ZSTD_obm_stable; in ZSTD_dParam_getBounds()
1431 if (value > bounds.upperBound) return 0; in ZSTD_dParam_withinBounds()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h232 assumeInBoundDual(DefinedOrUnknownSVal idx, DefinedOrUnknownSVal upperBound,
236 assumeInBound(DefinedOrUnknownSVal idx, DefinedOrUnknownSVal upperBound,
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_zstd.c335 if ((int)long_distance < bounds.lowerBound || (int)long_distance > bounds.upperBound) in archive_compressor_zstd_options()
/freebsd/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.h422 int upperBound; member
/freebsd/sys/contrib/zstd/lib/
H A Dzstd.h448 int upperBound; member
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoXCV.td767 def : Pat<(intr (XLenVT GPR:$rs1), powerOf2Minus1:$upperBound),
769 (trailing1sPlus1 imm:$upperBound))>;
/freebsd/sys/contrib/zstd/programs/
H A Dzstdcli.c1448 assert(ZSTD_NB_STRATEGIES == strategyBounds.upperBound); in main()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp769 static int64_t upperBound(StackOffset Size) { in upperBound() function
852 if (upperBound(AllocSize) + RealignmentPadding <= ProbeSize) { in allocateStackSpace()
869 if (FollowupAllocs || upperBound(AllocSize) + RealignmentPadding > in allocateStackSpace()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp5227 OPTIONAL(upperBound, MDSignedOrMDField, ); \ in parseDISubrange()
5248 UpperBound = convToMetadata(upperBound); in parseDISubrange()
5264 OPTIONAL(upperBound, MDSignedOrMDField, ); \ in parseDIGenericSubrange()
5281 Metadata *UpperBound = ConvToMetadata(upperBound); in parseDIGenericSubrange()