Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenOpenACC.cpp24 mlir::Value upperBound, mlir::Value extent) { in createBound() argument
31 builder.create<mlir::acc::DataBoundsOp>(boundLoc, lowerBound, upperBound); in createBound()
82 mlir::Value upperBound; in getOpenACCDataOperandInfo() local
102 upperBound = createOpenACCConstantInt(boundLoc, 64, in getOpenACCDataOperandInfo()
117 upperBound, extent)); in getOpenACCDataOperandInfo()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DMemoryLocation.cpp206 LocationSize::upperBound(DL.getTypeStoreSize(II->getType())), in getForArgument()
213 LocationSize::upperBound( in getForArgument()
274 Size = LocationSize::upperBound(Len->getZExtValue()); in getForArgument()
286 : LocationSize::upperBound(Len->getZExtValue()); in getForArgument()
331 Arg, LocationSize::upperBound(LenCI->getZExtValue()), AATags); in getForArgument()
/freebsd/contrib/llvm-project/clang/lib/CIR/Dialect/Transforms/
H A DFlattenCFG.cpp192 const APInt &upperBound) const { in condBrToRangeDestination()
193 assert(lowerBound.sle(upperBound) && "Invalid range"); in condBrToRangeDestination()
199 op.getLoc(), cir::IntAttr::get(sIntType, upperBound - lowerBound)); in condBrToRangeDestination()
366 APInt upperBound = rangeVal.second; in matchAndRewrite() local
369 if (lowerBound.sgt(upperBound)) in matchAndRewrite()
375 if ((upperBound - lowerBound) in matchAndRewrite()
377 for (APInt iValue = lowerBound; iValue.sle(upperBound); ++iValue) { in matchAndRewrite()
387 defaultDestination, lowerBound, upperBound); in matchAndRewrite()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DMemoryLocation.h102 static LocationSize upperBound(uint64_t Value) { in upperBound() function
110 static LocationSize upperBound(TypeSize Value) { in upperBound() function
113 return upperBound(Value.getFixedValue()); in upperBound()
149 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/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.c427 bounds.upperBound = ZSTD_maxCLevel(); in ZSTD_cParam_getBounds()
432 bounds.upperBound = ZSTD_WINDOWLOG_MAX; in ZSTD_cParam_getBounds()
437 bounds.upperBound = ZSTD_HASHLOG_MAX; in ZSTD_cParam_getBounds()
442 bounds.upperBound = ZSTD_CHAINLOG_MAX; in ZSTD_cParam_getBounds()
447 bounds.upperBound = ZSTD_SEARCHLOG_MAX; in ZSTD_cParam_getBounds()
452 bounds.upperBound = ZSTD_MINMATCH_MAX; in ZSTD_cParam_getBounds()
457 bounds.upperBound = ZSTD_TARGETLENGTH_MAX; in ZSTD_cParam_getBounds()
462 bounds.upperBound = ZSTD_STRATEGY_MAX; in ZSTD_cParam_getBounds()
467 bounds.upperBound = 1; in ZSTD_cParam_getBounds()
472 bounds.upperBound = 1; in ZSTD_cParam_getBounds()
[all …]
H A Dzstd_compress_internal.h623 if (value > bounds.upperBound) return 0; in ZSTD_cParam_withinBounds()
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dzstd_compress.c428 bounds.upperBound = ZSTD_maxCLevel(); in ZSTD_cParam_getBounds()
433 bounds.upperBound = ZSTD_WINDOWLOG_MAX; in ZSTD_cParam_getBounds()
438 bounds.upperBound = ZSTD_HASHLOG_MAX; in ZSTD_cParam_getBounds()
443 bounds.upperBound = ZSTD_CHAINLOG_MAX; in ZSTD_cParam_getBounds()
448 bounds.upperBound = ZSTD_SEARCHLOG_MAX; in ZSTD_cParam_getBounds()
453 bounds.upperBound = ZSTD_MINMATCH_MAX; in ZSTD_cParam_getBounds()
458 bounds.upperBound = ZSTD_TARGETLENGTH_MAX; in ZSTD_cParam_getBounds()
463 bounds.upperBound = ZSTD_STRATEGY_MAX; in ZSTD_cParam_getBounds()
468 bounds.upperBound = 1; in ZSTD_cParam_getBounds()
473 bounds.upperBound = 1; in ZSTD_cParam_getBounds()
[all …]
H A Dzstd_compress_internal.h624 if (value > bounds.upperBound) return 0; in ZSTD_cParam_withinBounds()
/freebsd/sys/contrib/openzfs/module/zstd/lib/decompress/
H A Dzstd_decompress.c1809 size_t const max = (size_t)1 << bounds.upperBound; in ZSTD_DCtx_setMaxWindowSize()
1828 bounds.upperBound = ZSTD_WINDOWLOG_MAX; in ZSTD_dParam_getBounds()
1832 bounds.upperBound = (int)ZSTD_f_zstd1_magicless; in ZSTD_dParam_getBounds()
1837 bounds.upperBound = (int)ZSTD_bm_stable; in ZSTD_dParam_getBounds()
1841 bounds.upperBound = (int)ZSTD_d_ignoreChecksum; in ZSTD_dParam_getBounds()
1845 bounds.upperBound = (int)ZSTD_rmd_refMultipleDDicts; in ZSTD_dParam_getBounds()
1849 bounds.upperBound = 1; in ZSTD_dParam_getBounds()
1853 bounds.upperBound = ZSTD_BLOCKSIZE_MAX; in ZSTD_dParam_getBounds()
1870 if (value > bounds.upperBound) return 0; in ZSTD_dParam_withinBounds()
/freebsd/sys/contrib/zstd/lib/decompress/
H A Dzstd_decompress.c1808 size_t const max = (size_t)1 << bounds.upperBound; in ZSTD_DCtx_setMaxWindowSize()
1827 bounds.upperBound = ZSTD_WINDOWLOG_MAX; in ZSTD_dParam_getBounds()
1831 bounds.upperBound = (int)ZSTD_f_zstd1_magicless; in ZSTD_dParam_getBounds()
1836 bounds.upperBound = (int)ZSTD_bm_stable; in ZSTD_dParam_getBounds()
1840 bounds.upperBound = (int)ZSTD_d_ignoreChecksum; in ZSTD_dParam_getBounds()
1844 bounds.upperBound = (int)ZSTD_rmd_refMultipleDDicts; in ZSTD_dParam_getBounds()
1848 bounds.upperBound = 1; in ZSTD_dParam_getBounds()
1852 bounds.upperBound = ZSTD_BLOCKSIZE_MAX; in ZSTD_dParam_getBounds()
1869 if (value > bounds.upperBound) return 0; in ZSTD_dParam_withinBounds()
/freebsd/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DProgramState.h231 assumeInBoundDual(DefinedOrUnknownSVal idx, DefinedOrUnknownSVal upperBound,
235 assumeInBound(DefinedOrUnknownSVal idx, DefinedOrUnknownSVal upperBound,
/freebsd/contrib/libarchive/libarchive/
H A Darchive_write_add_filter_zstd.c356 if ((int)long_distance < bounds.lowerBound || (int)long_distance > bounds.upperBound) { in archive_compressor_zstd_options()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVInstrInfoXCV.td750 def : Pat<(intr (XLenVT GPR:$rs1), powerOf2Minus1:$upperBound),
752 (trailing1sPlus1 imm:$upperBound))>;
/freebsd/sys/contrib/openzfs/module/zstd/lib/
H A Dzstd.h548 int upperBound; member
/freebsd/sys/contrib/zstd/lib/
H A Dzstd.h547 int upperBound; member
/freebsd/sys/contrib/zstd/programs/
H A Dzstdcli.c1608 assert(ZSTD_NB_STRATEGIES == strategyBounds.upperBound); in main()
/freebsd/contrib/llvm-project/llvm/lib/AsmParser/
H A DLLParser.cpp5438 OPTIONAL(upperBound, MDSignedOrMDField, ); \ in parseDISubrangeType()
5454 Metadata *UpperBound = convToMetadata(upperBound); in parseDISubrangeType()
5474 OPTIONAL(upperBound, MDSignedOrMDField, ); \ in parseDISubrange()
5495 UpperBound = convToMetadata(upperBound); in parseDISubrange()
5511 OPTIONAL(upperBound, MDSignedOrMDField, ); \ in parseDIGenericSubrange()
5528 Metadata *UpperBound = ConvToMetadata(upperBound); in parseDIGenericSubrange()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FrameLowering.cpp805 static int64_t upperBound(StackOffset Size) { in upperBound() function
888 if (upperBound(AllocSize) + RealignmentPadding <= ProbeSize) { in allocateStackSpace()
905 if (FollowupAllocs || upperBound(AllocSize) + RealignmentPadding > in allocateStackSpace()