| /openbsd/src/gnu/llvm/llvm/lib/IR/ |
| D | ConstantRange.cpp | 46 Upper(Lower) {} in ConstantRange() 49 : Lower(std::move(V)), Upper(Lower + 1) {} in ConstantRange() 52 : Lower(std::move(L)), Upper(std::move(U)) { in ConstantRange() 53 assert(Lower.getBitWidth() == Upper.getBitWidth() && in ConstantRange() 55 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) && in ConstantRange() 73 APInt Lower = Known.getMinValue(), Upper = Known.getMaxValue(); in fromKnownBits() local 75 Upper.clearSignBit(); in fromKnownBits() 76 return ConstantRange(Lower, Upper + 1); in fromKnownBits() 273 APInt Lower, Upper; in makeExactMulNSWRegion() local 276 Upper = APIntOps::RoundingSDiv(MinValue, V, APInt::Rounding::DOWN); in makeExactMulNSWRegion() [all …]
|
| /openbsd/src/gnu/usr.bin/perl/lib/unicore/auxiliary/ |
| D | SentenceBreakProperty.txt | 1310 0041..005A ; Upper # L& [26] LATIN CAPITAL LETTER A..LATIN CAPITAL LETTER Z 1311 00C0..00D6 ; Upper # L& [23] LATIN CAPITAL LETTER A WITH GRAVE..LATIN CAPITAL LETTER O WITH DIA… 1312 00D8..00DE ; Upper # L& [7] LATIN CAPITAL LETTER O WITH STROKE..LATIN CAPITAL LETTER THORN 1313 0100 ; Upper # L& LATIN CAPITAL LETTER A WITH MACRON 1314 0102 ; Upper # L& LATIN CAPITAL LETTER A WITH BREVE 1315 0104 ; Upper # L& LATIN CAPITAL LETTER A WITH OGONEK 1316 0106 ; Upper # L& LATIN CAPITAL LETTER C WITH ACUTE 1317 0108 ; Upper # L& LATIN CAPITAL LETTER C WITH CIRCUMFLEX 1318 010A ; Upper # L& LATIN CAPITAL LETTER C WITH DOT ABOVE 1319 010C ; Upper # L& LATIN CAPITAL LETTER C WITH CARON [all …]
|
| D | SBTest.txt | 37 ÷ 0001 × 0041 ÷ # ÷ [0.2] <START OF HEADING> (Other) × [998.0] LATIN CAPITAL LETTER A (Upper) ÷ [0… 38 …G> (Other) × [5.0] COMBINING DIAERESIS (Extend_FE) × [998.0] LATIN CAPITAL LETTER A (Upper) ÷ [0.3] 67 ÷ 000D ÷ 0041 ÷ # ÷ [0.2] <CARRIAGE RETURN (CR)> (CR) ÷ [4.0] LATIN CAPITAL LETTER A (Upper) ÷ [0.… 68 …(CR)> (CR) ÷ [4.0] COMBINING DIAERESIS (Extend_FE) × [998.0] LATIN CAPITAL LETTER A (Upper) ÷ [0.3] 97 ÷ 000A ÷ 0041 ÷ # ÷ [0.2] <LINE FEED (LF)> (LF) ÷ [4.0] LATIN CAPITAL LETTER A (Upper) ÷ [0.3] 98 …(LF)> (LF) ÷ [4.0] COMBINING DIAERESIS (Extend_FE) × [998.0] LATIN CAPITAL LETTER A (Upper) ÷ [0.3] 127 ÷ 0085 ÷ 0041 ÷ # ÷ [0.2] <NEXT LINE (NEL)> (Sep) ÷ [4.0] LATIN CAPITAL LETTER A (Upper) ÷ [0.3] 128 …EL)> (Sep) ÷ [4.0] COMBINING DIAERESIS (Extend_FE) × [998.0] LATIN CAPITAL LETTER A (Upper) ÷ [0.3] 157 ÷ 0009 × 0041 ÷ # ÷ [0.2] <CHARACTER TABULATION> (Sp) × [998.0] LATIN CAPITAL LETTER A (Upper) ÷ [… 158 …TION> (Sp) × [5.0] COMBINING DIAERESIS (Extend_FE) × [998.0] LATIN CAPITAL LETTER A (Upper) ÷ [0.3] [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/Support/ |
| D | Format.h | 169 bool Upper; 176 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U), 187 bool Upper = false) { 189 return FormattedNumber(N, 0, Width, true, Upper, true); 200 bool Upper = false) { 202 return FormattedNumber(N, 0, Width, true, Upper, false); 223 bool Upper; // Show offset and hex bytes as upper case. 231 ByteGroupSize(BGS), Upper(U), ASCII(A) { 242 uint32_t IndentLevel = 0, bool Upper = false) { 244 ByteGroupSize, Upper, false); [all …]
|
| 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()
|
| D | NativeFormatting.h | 22 enum class HexPrintStyle { Upper, Lower, PrefixUpper, PrefixLower }; enumerator
|
| D | FormatProviders.h | 84 Style = HexPrintStyle::Upper; in consumeHexStyle()
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/IR/ |
| 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;
|
| /openbsd/src/gnu/llvm/llvm/lib/Support/ |
| 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 = countLeadingZeros(Upper); in multiply64() 50 Upper = Upper << LeadingZeros | Lower >> Shift; in multiply64() 51 return getRounded(Upper, Shift, in multiply64()
|
| D | NativeFormatting.cpp | 147 bool Upper = in write_hex() local 148 (Style == HexPrintStyle::Upper || Style == HexPrintStyle::PrefixUpper); in write_hex() 161 *--CurPtr = hexdigit(x, !Upper); in write_hex()
|
| D | raw_ostream.cpp | 389 if (FN.Upper && FN.HexPrefix) in operator <<() 391 else if (FN.Upper && !FN.HexPrefix) in operator <<() 392 Style = HexPrintStyle::Upper; in operator <<() 393 else if (!FN.Upper && FN.HexPrefix) in operator <<() 416 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower; in operator <<()
|
| /openbsd/src/gnu/llvm/compiler-rt/lib/scudo/standalone/ |
| 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()
|
| /openbsd/src/gnu/llvm/llvm/lib/Analysis/ |
| D | StratifiedSets.h | 513 auto *Upper = &linksAt(UpperIndex); in tryMergeUpwards() local 514 if (Lower == Upper) in tryMergeUpwards() 520 while (Current->hasAbove() && Current != Upper) { in tryMergeUpwards() 526 if (Current != Upper) in tryMergeUpwards() 529 Upper->setAttrs(Attrs); in tryMergeUpwards() 533 Upper->setBelow(NewBelowIndex); in tryMergeUpwards() 537 Upper->clearBelow(); in tryMergeUpwards() 541 Ptr->remapTo(Upper->Number); in tryMergeUpwards()
|
| D | ValueTracking.cpp | 476 ConstantInt *Upper = in computeKnownBitsFromRangeMetadata() local 478 ConstantRange Range(Lower->getValue(), Upper->getValue()); in computeKnownBitsFromRangeMetadata() 2401 ConstantInt *Upper = in rangeMetadataExcludesValue() local 2403 ConstantRange Range(Lower->getValue(), Upper->getValue()); in rangeMetadataExcludesValue() 7068 APInt &Upper, const InstrInfoQuery &IIQ, in setLimitsForBinOp() argument 7092 Upper = APInt::getSignedMaxValue(Width) + *C + 1; in setLimitsForBinOp() 7096 Upper = APInt::getSignedMaxValue(Width) + 1; in setLimitsForBinOp() 7105 Upper = *C + 1; in setLimitsForBinOp() 7118 Upper = APInt::getSignedMaxValue(Width).ashr(*C) + 1; in setLimitsForBinOp() 7126 Upper = C->ashr(ShiftAmount) + 1; in setLimitsForBinOp() [all …]
|
| D | DependenceAnalysis.cpp | 2633 if (Bound[K].Upper[Dependence::DVEntry::ALL]) in banerjeeMIVtest() 2634 LLVM_DEBUG(dbgs() << *Bound[K].Upper[Dependence::DVEntry::ALL] << '\n'); in banerjeeMIVtest() 2747 if (Bound[Level].Upper[Dependence::DVEntry::LT]) in exploreDirections() 2748 LLVM_DEBUG(dbgs() << *Bound[Level].Upper[Dependence::DVEntry::LT] in exploreDirections() 2758 if (Bound[Level].Upper[Dependence::DVEntry::EQ]) in exploreDirections() 2759 LLVM_DEBUG(dbgs() << *Bound[Level].Upper[Dependence::DVEntry::EQ] in exploreDirections() 2769 if (Bound[Level].Upper[Dependence::DVEntry::GT]) in exploreDirections() 2770 LLVM_DEBUG(dbgs() << *Bound[Level].Upper[Dependence::DVEntry::GT] in exploreDirections() 2834 Bound[K].Upper[Dependence::DVEntry::ALL] = nullptr; // Default value = +infinity. in findBoundsALL() 2839 Bound[K].Upper[Dependence::DVEntry::ALL] = in findBoundsALL() [all …]
|
| /openbsd/src/gnu/llvm/clang/lib/StaticAnalyzer/Core/ |
| D | RangeConstraintManager.cpp | 393 bool RangeSet::pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const { in pin() 401 APSIntType::RangeTestResultKind UpperTest = Type.testInRange(Upper, true); in pin() 409 if (Lower <= Upper) in pin() 414 Upper = Type.getMaxValue(); in pin() 419 Type.apply(Upper); in pin() 424 Upper = Type.getMaxValue(); in pin() 433 Upper = Type.getMaxValue(); in pin() 438 Type.apply(Upper); in pin() 443 Upper = Type.getMaxValue(); in pin() 455 Type.apply(Upper); in pin() [all …]
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/BinaryFormat/ELFRelocs/ |
| D | Lanai.def | 16 // Upper 16-bits of a symbolic relocation
|
| /openbsd/src/gnu/llvm/llvm/include/llvm/DebugInfo/CodeView/ |
| D | TypeHashing.h | 225 write_hex(Stream, V.Hash, HexPrintStyle::Upper, 8); 234 write_hex(Stream, B, HexPrintStyle::Upper, 2);
|
| /openbsd/src/gnu/llvm/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| D | RangedConstraintManager.h | 197 RangeSet intersect(RangeSet What, llvm::APSInt Lower, llvm::APSInt Upper); 394 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const;
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/SystemZ/ |
| D | SystemZISelDAGToDAG.cpp | 1126 SDValue Upper = CurDAG->getConstant(UpperVal, DL, VT); in splitLargeImmediate() local 1128 Upper = CurDAG->getNode(Opcode, DL, VT, Op0, Upper); in splitLargeImmediate() 1143 HandleSDNode Handle(Upper); in splitLargeImmediate() 1144 SelectCode(Upper.getNode()); in splitLargeImmediate() 1145 Upper = Handle.getValue(); in splitLargeImmediate() 1149 SDValue Or = CurDAG->getNode(Opcode, DL, VT, Upper, Lower); in splitLargeImmediate()
|
| /openbsd/src/gnu/llvm/llvm/lib/Target/ARC/Disassembler/ |
| D | ARCDisassembler.cpp | 340 Field Upper = fieldFromInstruction(Insn, 0, 5); in DecodeSOPwithRS12() local 342 Field Result = Sign * ((Upper << 6) + Lower); in DecodeSOPwithRS12()
|
| /openbsd/src/gnu/llvm/llvm/tools/llvm-dwarfdump/ |
| 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()
|
| /openbsd/src/gnu/gcc/gcc/config/mips/ |
| D | mips-ps-3d.md | 69 ; pul.ps - Pair Upper Lower 109 ; plu.ps - Pair Lower Upper 217 ; cvt.s.pu - Floating Point Convert Pair Upper to Single Floating Point
|
| /openbsd/src/gnu/usr.bin/perl/lib/unicore/ |
| D | PropertyAliases.txt | 199 Upper ; Uppercase
|
| /openbsd/src/gnu/llvm/clang/include/clang/AST/ |
| D | ExprOpenMP.h | 240 Expr *Upper = nullptr; member
|