| /src/external/apache2/llvm/dist/llvm/include/llvm/Support/ |
| UnicodeCharRanges.h | 22 /// Represents a closed range of Unicode code points [Lower, Upper]. 25 uint32_t Upper; 32 return Range.Upper < Value; 76 LLVM_DEBUG(dbgs() << "Upper bound 0x"); 82 if (I->Upper < I->Lower) { 83 LLVM_DEBUG(dbgs() << "Upper bound 0x"); 86 LLVM_DEBUG(dbgs().write_hex(I->Upper) << "\n"); 89 Prev = I->Upper;
|
| 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) { 241 uint32_t IndentLevel = 0, bool Upper = false) [all...] |
| NativeFormatting.h | 22 enum class HexPrintStyle { Upper, Lower, PrefixUpper, PrefixLower };
|
| FormatProviders.h | 84 Style = HexPrintStyle::Upper; 116 /// | X- | Hex no prefix, upper | 42 | 2A | Minimum # digits | 118 /// | X+ / X | Hex + prefix, upper | 42 | 0x2A | Minimum # digits | 166 /// | X- | Hex no prefix, upper | 0xDEADBEEF | DEADBEEF | 168 /// | X+ / X | Hex + prefix, upper | 0xDEADBEEF | 0xDEADBEEF |
|
| /src/external/apache2/llvm/dist/llvm/lib/IR/ |
| ConstantRange.cpp | 10 // for an integral value. This keeps track of a lower and upper bound for the 12 // keeps track of a [lower, upper) bound, which specifies an interval just like 45 Upper(Lower) {} 48 : Lower(std::move(V)), Upper(Lower + 1) {} 51 : Lower(std::move(L)), Upper(std::move(U)) { 52 assert(Lower.getBitWidth() == Upper.getBitWidth() && 54 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) && 55 "Lower == Upper, but they aren't min or max value!"); 71 // and the upper bound as a non-negative one. 72 APInt Lower = Known.getMinValue(), Upper = Known.getMaxValue() [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| ConstantRange.h | 10 // for an integral value. This keeps track of a lower and upper bound for the 12 // keeps track of a [lower, upper) bound, which specifies an interval just like 48 APInt Lower, Upper; 68 /// Lower==Upper and Lower != Min or Max value for its type. It will also 70 ConstantRange(APInt Lower, APInt Upper); 83 /// Upper are the same, a full range is returned. 84 static ConstantRange getNonEmpty(APInt Lower, APInt Upper) { 85 if (Lower == Upper) 87 return ConstantRange(std::move(Lower), std::move(Upper)); 173 /// Return the upper value for this range [all...] |
| /src/sys/arch/amiga/stand/bootblock/boot/ |
| amigatypes.h | 60 u_int32_t First, Lower, Upper, Free;
|
| main.c | 276 vsize = (mh->Upper & -__PGSZ) - vfrom; 341 vsize = (mh->Upper & -__PGSZ) - vfrom;
|
| /src/external/apache2/llvm/dist/llvm/lib/Support/ |
| ScaledNumber.cpp | 33 uint64_t Upper = P1, Lower = P4; 36 Upper += getU(N) + (NewLower < Lower); 42 // Check whether the upper digit is empty. 43 if (!Upper) 47 unsigned LeadingZeros = countLeadingZeros(Upper); 50 Upper = Upper << LeadingZeros | Lower >> Shift; 51 return getRounded(Upper, Shift,
|
| NativeFormatting.cpp | 141 bool Upper = 142 (Style == HexPrintStyle::Upper || Style == HexPrintStyle::PrefixUpper); 155 *--CurPtr = hexdigit(x, !Upper);
|
| raw_ostream.cpp | 383 if (FN.Upper && FN.HexPrefix) 385 else if (FN.Upper && !FN.HexPrefix) 386 Style = HexPrintStyle::Upper; 387 else if (!FN.Upper && FN.HexPrefix) 410 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower;
|
| /src/sys/external/bsd/acpica/dist/utilities/ |
| utprint.c | 88 BOOLEAN Upper); 161 * Upper - Whether or not using upper cased digits 175 BOOLEAN Upper) 183 Digits = Upper ? AcpiGbl_UpperHexDigits : AcpiGbl_LowerHexDigits; 303 BOOLEAN Upper; 321 Upper = (Type & ACPI_FORMAT_UPPER) ? TRUE : FALSE; 357 Pos = AcpiUtPutNumber (ReversedString, Number, Base, Upper); 388 String, End, Upper ? 'X' : 'x');
|
| /src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| StratifiedSets.h | 514 auto *Upper = &linksAt(UpperIndex); 515 if (Lower == Upper) 521 while (Current->hasAbove() && Current != Upper) { 527 if (Current != Upper) 530 Upper->setAttrs(Attrs); 534 Upper->setBelow(NewBelowIndex); 538 Upper->clearBelow(); 542 Ptr->remapTo(Upper->Number);
|
| ValueTracking.cpp | 464 ConstantInt *Upper = 466 ConstantRange Range(Lower->getValue(), Upper->getValue()); 969 // BitWidth > 64 and any upper bits are known, we'll end up returning the 1537 // If we have a known 1, its position is our upper bound. 1548 // If we have a known 1, its position is our upper bound. 2193 ConstantInt *Upper = 2195 ConstantRange Range(Lower->getValue(), Upper->getValue()); 2773 // Returns the input and lower/upper bounds. 6059 // upper bits after truncation. It can't be abs pattern, because it would 6622 APInt &Upper, const InstrInfoQuery &IIQ) [all...] |
| DependenceAnalysis.cpp | 1065 // This routine collects upper bound and extends or truncates if needed. 1137 // loop's upper bound. If a dependence exists, the dependence direction is 1342 // Check Delta/(2*ConstCoeff) against upper loop bound 2504 // U_k is the upper bound of the kth index, L_k is the lower bound of the Kth 2516 // When computing the upper bound, NULL denotes +inf; 2548 if (Bound[K].Upper[Dependence::DVEntry::ALL]) 2549 LLVM_DEBUG(dbgs() << *Bound[K].Upper[Dependence::DVEntry::ALL] << '\n'); 2649 if (Bound[Level].Upper[Dependence::DVEntry::LT]) 2650 LLVM_DEBUG(dbgs() << *Bound[Level].Upper[Dependence::DVEntry::LT] 2660 if (Bound[Level].Upper[Dependence::DVEntry::EQ] [all...] |
| /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| RangeConstraintManager.cpp | 194 bool RangeSet::pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const { 196 // both the upper and lower bounds against the symbol's type. 202 APSIntType::RangeTestResultKind UpperTest = Type.testInRange(Upper, true); 210 if (Lower <= Upper) 215 Upper = Type.getMaxValue(); 220 Type.apply(Upper); 225 Upper = Type.getMaxValue(); 234 Upper = Type.getMaxValue(); 239 Type.apply(Upper); 244 Upper = Type.getMaxValue() [all...] |
| /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/ |
| TypeHashing.h | 222 write_hex(Stream, V.Hash, HexPrintStyle::Upper, 8); 231 write_hex(Stream, B, HexPrintStyle::Upper, 2);
|
| /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/ |
| RangedConstraintManager.h | 161 /// Intersect the given set with the closed range [Lower, Upper]. 165 /// is greater than the Upper bound, the range is taken to wrap around. This 167 /// Upper] and [Lower, Max], or, alternatively, /removing/ all integers 168 /// between Upper and Lower. 172 RangeSet intersect(RangeSet What, llvm::APSInt Lower, llvm::APSInt Upper); 300 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const;
|
| /src/external/bsd/openldap/dist/libraries/liblunicode/utbm/ |
| README | 38 o Upper, lower, and title case conversions are one-to-one. 40 o For conversions between upper, lower, and title case, UCS2 characters
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/CSKY/AsmParser/ |
| CSKYAsmParser.cpp | 36 int64_t Lower, int64_t Upper, Twine Msg); 282 OperandVector &Operands, uint64_t ErrorInfo, int64_t Lower, int64_t Upper, 285 return Error(ErrorLoc, Msg + " [" + Twine(Lower) + ", " + Twine(Upper) + "]");
|
| /src/tests/usr.bin/grep/ |
| t_grep.sh | 228 grep -i Upper "$(atf_get_srcdir)/d_input"
|
| /src/external/apache2/llvm/dist/clang/include/clang/AST/ |
| ExprOpenMP.h | 238 /// Normalized upper bound. Normalized loop iterates from 0 to Upper with 240 Expr *Upper = nullptr;
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-dwarfdump/ |
| Statistics.cpp | 216 uint64_t Upper = std::min(A.HighPC, B.HighPC); 217 if (Lower >= Upper) 219 return Upper - Lower;
|
| /src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| SystemZISelDAGToDAG.cpp | 117 // narrower (in which case the upper bits are don't care), or wider (in which 1120 SDValue Upper = CurDAG->getConstant(UpperVal, DL, VT); 1122 Upper = CurDAG->getNode(Opcode, DL, VT, Op0, Upper); 1125 // When we haven't passed in Op0, Upper will be a constant. In order to 1128 // we need to use a handle to keep track of Upper in case it gets CSE'd by 1132 // SelectCode(Upper) later, along with the SelectCode(Or), and avoid needing 1137 HandleSDNode Handle(Upper); 1138 SelectCode(Upper.getNode()); 1139 Upper = Handle.getValue() [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Target/VE/ |
| VEInstrInfo.cpp | 776 bool Upper) { 778 MIB.addReg(Upper ? getVM512Upper(MI.getOperand(0).getReg()) 802 MIB.addReg(Upper ? getVM512Upper(MI.getOperand(3).getReg()) 836 addOperandsForVFMK(Bu, MI, /* Upper */ true); 838 addOperandsForVFMK(Bl, MI, /* Upper */ false);
|