| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | ConstantRange.cpp | 376 return Lower.ugt(Upper) && !Upper.isZero(); in isWrappedSet() 545 if (Upper.ult(CR.Upper)) in intersectWith() 554 if (Upper.ult(CR.Upper)) in intersectWith() 571 if (CR.Upper.ult(Upper)) in intersectWith() 599 if (CR.Upper.ult(Upper)) { in intersectWith() 647 if (CR.Upper.ult(Lower) || Upper.ult(CR.Lower)) in unionWith() 652 APInt U = (CR.Upper - 1).ugt(Upper - 1) ? CR.Upper : Upper; in unionWith() 663 if (CR.Upper.ule(Upper) || CR.Lower.uge(Lower)) in unionWith() 668 if (CR.Lower.ule(Upper) && Lower.ule(CR.Upper)) in unionWith() 694 if (CR.Lower.ule(Upper) || Lower.ule(CR.Upper)) in unionWith() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Format.h | 170 bool Upper; 177 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U), 188 bool Upper = false) { 190 return FormattedNumber(N, 0, Width, true, Upper, true); 201 bool Upper = false) { 203 return FormattedNumber(N, 0, Width, true, Upper, false); 225 bool Upper; // Show offset and hex bytes as upper case. 233 ByteGroupSize(BGS), Upper(U), ASCII(A) { 244 uint32_t IndentLevel = 0, bool Upper = false) { 246 ByteGroupSize, Upper, false); [all …]
|
| H A D | UnicodeCharRanges.h | 25 uint32_t Upper; member 32 return Range.Upper < Value; 82 if (I->Upper < I->Lower) { in rangesAreValid() 86 LLVM_DEBUG(dbgs().write_hex(I->Upper) << "\n"); in rangesAreValid() 89 Prev = I->Upper; in rangesAreValid()
|
| H A D | NativeFormatting.h | 22 enum class HexPrintStyle { Upper, Lower, PrefixUpper, PrefixLower }; enumerator
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | ConstantRange.h | 48 APInt Lower, Upper; variable 70 ConstantRange(APInt Lower, APInt Upper); 84 static ConstantRange getNonEmpty(APInt Lower, APInt Upper) { in getNonEmpty() argument 85 if (Lower == Upper) in getNonEmpty() 87 return ConstantRange(std::move(Lower), std::move(Upper)); in getNonEmpty() 201 const APInt &getUpper() const { return Upper; } in getUpper() 247 if (Upper == Lower + 1) in getSingleElement() 255 if (Lower == Upper + 1) in getSingleMissingElement() 256 return &Upper; in getSingleMissingElement() 289 return Lower == CR.Lower && Upper == CR.Upper;
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVRange.h | 27 LVAddress Upper = 0; variable 35 : Lower(LowerAddress), Upper(UpperAddress), Scope(Scope) {} in LVRangeEntry() 38 RangeType upper() const { return Upper; } in upper() 58 LVAddress Upper = 0; variable 72 LVAddress getUpper() const { return Upper; } in getUpper() 79 Upper = 0; in clear()
|
| H A D | LVType.h | 274 void setBounds(unsigned Lower, unsigned Upper) override { in setBounds() argument 276 UpperBound = Upper; in setBounds()
|
| H A D | LVSupport.h | 104 bool Upper = false) { 105 return format_hex(N, Width, Upper);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ScaledNumber.cpp | 33 uint64_t Upper = P1, Lower = P4; in multiply64() local 36 Upper += getU(N) + (NewLower < Lower); in multiply64() 43 if (!Upper) in multiply64() 47 unsigned LeadingZeros = llvm::countl_zero(Upper); in multiply64() 50 Upper = Upper << LeadingZeros | Lower >> Shift; in multiply64() 51 return getRounded(Upper, Shift, in multiply64()
|
| H A D | NativeFormatting.cpp | 144 bool Upper = in write_hex() local 145 (Style == HexPrintStyle::Upper || Style == HexPrintStyle::PrefixUpper); in write_hex() 158 *--CurPtr = hexdigit(x, !Upper); in write_hex()
|
| H A D | raw_ostream.cpp | 390 if (FN.Upper && FN.HexPrefix) in operator <<() 392 else if (FN.Upper && !FN.HexPrefix) in operator <<() 393 Style = HexPrintStyle::Upper; in operator <<() 394 else if (!FN.Upper && FN.HexPrefix) in operator <<() 417 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower; in operator <<()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/scudo/standalone/ |
| H A D | string_utils.cpp | 30 bool Negative, bool Upper) { in appendNumber() argument 65 : (Upper ? 'A' : 'a') + Digit - 10); in appendNumber() 73 bool Upper) { in appendUnsigned() argument 75 PadWithZero, /*Negative=*/false, Upper); in appendUnsigned() 174 const bool Upper = (*Cur == 'X'); in formatString() local 176 Width, PadWithZero, Upper); in formatString()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
| H A D | RangeConstraintManager.cpp | 409 if (Lower <= Upper) in pin() 414 Upper = Type.getMaxValue(); in pin() 419 Type.apply(Upper); in pin() 438 Type.apply(Upper); in pin() 455 Type.apply(Upper); in pin() 460 if (Lower <= Upper) in pin() 481 if (Lower <= Upper) { in intersect() 509 Range(ValueFactory.getMinValue(Upper), ValueFactory.getValue(Upper))); in intersect() 854 llvm::APSInt Upper = Point; in deletePoint() local 857 ++Upper; in deletePoint() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Core/ |
| H A D | LVRange.cpp | 61 if (UpperAddress > Upper) in addEntry() 62 Upper = UpperAddress; in addEntry()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ELFRelocs/ |
| H A D | Lanai.def | 16 // Upper 16-bits of a symbolic relocation
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | TypeHashing.h | 225 write_hex(Stream, V.Hash, HexPrintStyle::Upper, 8); 234 write_hex(Stream, B, HexPrintStyle::Upper, 2);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | DependenceAnalysis.cpp | 2633 if (Bound[K].Upper[Dependence::DVEntry::ALL]) in banerjeeMIVtest() 2747 if (Bound[Level].Upper[Dependence::DVEntry::LT]) in exploreDirections() 2758 if (Bound[Level].Upper[Dependence::DVEntry::EQ]) in exploreDirections() 2769 if (Bound[Level].Upper[Dependence::DVEntry::GT]) in exploreDirections() 2839 Bound[K].Upper[Dependence::DVEntry::ALL] = in findBoundsALL() 2849 Bound[K].Upper[Dependence::DVEntry::ALL] = in findBoundsALL() 2880 Bound[K].Upper[Dependence::DVEntry::EQ] = in findBoundsEQ() 2923 Bound[K].Upper[Dependence::DVEntry::LT] = in findBoundsLT() 2967 Bound[K].Upper[Dependence::DVEntry::GT] = in findBoundsGT() 3061 const SCEV *Sum = Bound[1].Upper[Bound[1].Direction]; in getUpperBound() [all …]
|
| H A D | ValueTracking.cpp | 428 ConstantInt *Upper = in computeKnownBitsFromRangeMetadata() local 2261 ConstantInt *Upper = in rangeMetadataExcludesValue() local 8560 Upper = *C + 1; in setLimitsForBinOp() 8590 Upper = *C + 1; in setLimitsForBinOp() 8605 Upper = *C + 1; in setLimitsForBinOp() 8620 Upper = *C + 1; in setLimitsForBinOp() 8652 Upper = IntMax + 1; in setLimitsForBinOp() 8660 Upper = Upper + 1; in setLimitsForBinOp() 8682 Upper = *C + 1; in setLimitsForBinOp() 8689 Upper = C->abs(); in setLimitsForBinOp() [all …]
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| H A D | RangedConstraintManager.h | 197 RangeSet intersect(RangeSet What, llvm::APSInt Lower, llvm::APSInt Upper); 394 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const;
|
| /freebsd-14.2/contrib/bmake/unit-tests/ |
| H A D | varmod-indirect.mk | 76 .if ${Upper:L:${:Utu}} != "UPPER"
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/LogicalView/Readers/ |
| H A D | LVELFReader.cpp | 685 LVOffset Upper = CurrentEndOffset; in traverseDieAndChildren() local 691 Upper = Child.getOffset(); in traverseDieAndChildren() 695 if (options().getPrintSizes() && Upper) in traverseDieAndChildren() 696 CompileUnit->addSize(Scope, Lower, Upper); in traverseDieAndChildren()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/ARC/Disassembler/ |
| H A D | ARCDisassembler.cpp | 340 Field Upper = fieldFromInstruction(Insn, 0, 5); in DecodeSOPwithRS12() local 342 Field Result = Sign * ((Upper << 6) + Lower); in DecodeSOPwithRS12()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelDAGToDAG.cpp | 1132 SDValue Upper = CurDAG->getConstant(UpperVal, DL, VT); in splitLargeImmediate() local 1134 Upper = CurDAG->getNode(Opcode, DL, VT, Op0, Upper); in splitLargeImmediate() 1149 HandleSDNode Handle(Upper); in splitLargeImmediate() 1150 SelectCode(Upper.getNode()); in splitLargeImmediate() 1151 Upper = Handle.getValue(); in splitLargeImmediate() 1155 SDValue Or = CurDAG->getNode(Opcode, DL, VT, Upper, Lower); in splitLargeImmediate()
|
| /freebsd-14.2/sys/contrib/device-tree/Bindings/iio/frequency/ |
| H A D | adi,adrf6780.yaml | 93 Switch to the Lower LO Sideband. By default the Upper LO
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-dwarfdump/ |
| H A D | Statistics.cpp | 254 uint64_t Upper = std::min(A.HighPC, B.HighPC); in calculateOverlap() local 255 if (Lower >= Upper) in calculateOverlap() 257 return Upper - Lower; in calculateOverlap()
|