Searched defs:Upper (Results 1 - 25 of 26) sorted by relevance

12

/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DConstantRange.h43 APInt Lower, Upper; member in class:llvm::ConstantRange
55 /// Lower==Upper and Lower != Min or Max value for its type. It will also
57 ConstantRange(const APInt &Lower, const APInt &Upper);
75 const APInt &getUpper() const { return Upper; }
112 if (Upper == Lower + 1)
148 return Lower == CR.Lower && Upper == CR.Upper;
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DNativeFormatting.h24 enum class HexPrintStyle { Upper, Lower, PrefixUpper, PrefixLower }; member in class:llvm::HexPrintStyle
H A DFormat.h160 bool Upper; member in class:llvm::FormattedNumber
167 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
178 bool Upper = false) {
180 return FormattedNumber(N, 0, Width, true, Upper, true);
191 bool Upper = false) {
193 return FormattedNumber(N, 0, Width, true, Upper, false);
214 bool Upper; // Show offset and hex bytes as upper case. member in class:llvm::FormattedBytes
222 ByteGroupSize(BGS), Upper(U), ASCII(A) {
232 uint32_t IndentLevel = 0, bool Upper = false) {
234 ByteGroupSize, Upper, fals
[all...]
/external/llvm/include/llvm/IR/
H A DConstantRange.h44 APInt Lower, Upper; member in class:llvm::ConstantRange
59 /// Lower==Upper and Lower != Min or Max value for its type. It will also
61 ConstantRange(APIntMoveTy Lower, APIntMoveTy Upper);
128 const APInt &getUpper() const { return Upper; }
164 if (Upper == Lower + 1)
196 return Lower == CR.Lower && Upper == CR.Upper;
/external/llvm/include/llvm/Support/
H A DUnicodeCharRanges.h26 /// \brief Represents a closed range of Unicode code points [Lower, Upper].
29 uint32_t Upper; member in struct:llvm::sys::UnicodeCharRange
36 return Range.Upper < Value;
80 DEBUG(dbgs() << "Upper bound 0x");
86 if (I->Upper < I->Lower) {
87 DEBUG(dbgs() << "Upper bound 0x");
90 DEBUG(dbgs().write_hex(I->Upper) << "\n");
93 Prev = I->Upper;
H A DFormat.h147 bool Upper; member in class:llvm::FormattedNumber
154 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
165 bool Upper = false) {
167 return FormattedNumber(N, 0, Width, true, Upper, true);
178 bool Upper = false) {
180 return FormattedNumber(N, 0, Width, true, Upper, false);
/external/icu/android_icu4j/src/main/java/android/icu/text/
H A DCaseMap.java48 public static Upper toUpper() { return Upper.DEFAULT; }
135 public static final class Upper extends CaseMap { class in class:CaseMap
136 private static final Upper DEFAULT = new Upper(0);
137 private static final Upper OMIT_UNCHANGED = new Upper(CaseMapImpl.OMIT_UNCHANGED_TEXT);
138 private Upper(int opt) { super(opt); } method in class:CaseMap.Upper
145 public Upper omitUnchangedText() {
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DCaseMap.java49 public static Upper toUpper() { return Upper.DEFAULT; }
144 public static final class Upper extends CaseMap { class in class:CaseMap
145 private static final Upper DEFAULT = new Upper(0);
146 private static final Upper OMIT_UNCHANGED = new Upper(CaseMapImpl.OMIT_UNCHANGED_TEXT);
147 private Upper(int opt) { super(opt); } method in class:CaseMap.Upper
155 public Upper omitUnchangedText() {
/external/llvm/lib/Support/
H A DScaledNumber.cpp34 uint64_t Upper = P1, Lower = P4; local
37 Upper += getU(N) + (NewLower < Lower);
44 if (!Upper)
48 unsigned LeadingZeros = countLeadingZeros(Upper);
51 Upper = Upper << LeadingZeros | Lower >> Shift;
52 return getRounded(Upper, Shift,
/external/swiftshader/third_party/LLVM/lib/Support/
H A DConstantRange.cpp34 Lower = Upper = APInt::getMaxValue(BitWidth);
36 Lower = Upper = APInt::getMinValue(BitWidth);
41 ConstantRange::ConstantRange(const APInt &V) : Lower(V), Upper(V + 1) {}
44 Lower(L), Upper(U) {
48 "Lower == Upper, but they aren't min or max value!");
119 return Lower == Upper && Lower.isMaxValue();
125 return Lower == Upper && Lower.isMinValue();
132 return Lower.ugt(Upper);
149 if (Lower != Upper) // One of T or F in the set...
155 return Upper
611 APInt Upper = getUnsignedMax().udiv(RHS_umin) + 1; local
694 OS << "[" << Lower << "," << Upper << ")"; local
[all...]
/external/swiftshader/third_party/llvm-subzero/lib/Support/
H A DNativeFormatting.cpp143 bool Upper = local
144 (Style == HexPrintStyle::Upper || Style == HexPrintStyle::PrefixUpper);
157 *--CurPtr = hexdigit(x, !Upper);
/external/llvm/lib/IR/
H A DConstantRange.cpp36 Lower = Upper = APInt::getMaxValue(BitWidth);
38 Lower = Upper = APInt::getMinValue(BitWidth);
44 : Lower(std::move(V)), Upper(Lower + 1) {}
47 : Lower(std::move(L)), Upper(std::move(U)) {
48 assert(Lower.getBitWidth() == Upper.getBitWidth() &&
50 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) &&
51 "Lower == Upper, but they aren't min or max value!");
230 return Lower == Upper && Lower.isMaxValue();
236 return Lower == Upper && Lower.isMinValue();
243 return Lower.ugt(Upper);
814 APInt Upper = getUnsignedMax().udiv(RHS_umin) + 1; local
896 OS << "[" << Lower << "," << Upper << ")"; local
[all...]
/external/pdfium/fxbarcode/oned/
H A DBC_OneDimWriter.cpp86 wchar_t CBC_OneDimWriter::Upper(wchar_t ch) { function in class:CBC_OneDimWriter
/external/clang/lib/StaticAnalyzer/Core/
H A DRangeConstraintManager.cpp116 const llvm::APSInt &Upper,
132 if (i->From() > Upper) {
137 if (i->Includes(Upper)) {
139 BV.getValue(Upper)));
144 if (i->Includes(Upper)) {
145 newRanges = F.add(newRanges, Range(i->From(), BV.getValue(Upper)));
158 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const {
166 APSIntType::RangeTestResultKind UpperTest = Type.testInRange(Upper, true);
174 if (Lower <= Upper)
179 Upper
114 IntersectInRange(BasicValueFactory &BV, Factory &F, const llvm::APSInt &Lower, const llvm::APSInt &Upper, PrimRangeSet &newRanges, PrimRangeSet::iterator &i, PrimRangeSet::iterator &e) const argument
459 llvm::APSInt Upper = Lower; local
506 llvm::APSInt Upper = ComparisonVal - Adjustment; local
542 llvm::APSInt Upper = Max - Adjustment; local
579 llvm::APSInt Upper = Max - Adjustment; local
615 llvm::APSInt Upper = ComparisonVal - Adjustment; local
643 llvm::APSInt Upper = ComparisonVal - Adjustment; local
[all...]
/external/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h369 const SCEV *Upper[8]; member in struct:llvm::DependenceInfo::BoundInfo
/external/llvm/lib/Analysis/
H A DStratifiedSets.h524 auto *Upper = &linksAt(UpperIndex); local
525 if (Lower == Upper)
531 while (Current->hasAbove() && Current != Upper) {
537 if (Current != Upper)
540 Upper->setAttrs(Attrs);
544 Upper->setBelow(NewBelowIndex);
548 Upper->clearBelow();
552 Ptr->remapTo(Upper->Number);
H A DInstructionSimplify.cpp2304 APInt Upper = APInt(Width, 0); local
2308 Upper = CI2->getValue();
2311 Upper = CI2->getValue().abs();
2312 Lower = (-Upper) + 1;
2315 Upper = CI2->getValue() + 1;
2320 Upper = NegOne.udiv(CI2->getValue()) + 1;
2325 Upper = Lower.lshr(1) + 1;
2328 Upper = CI2->getValue().abs() + 1;
2329 Lower = (-Upper) + 1;
2339 Upper
[all...]
H A DValueTracking.cpp387 ConstantInt *Upper = local
389 ConstantRange Range(Lower->getValue(), Upper->getValue());
1658 ConstantInt *Upper = local
1660 ConstantRange Range(Lower->getValue(), Upper->getValue());
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelDAGToDAG.cpp1070 SDValue Upper = CurDAG->getConstant(UpperVal, DL, VT); local
1072 Upper = CurDAG->getNode(Opcode, DL, VT, Op0, Upper);
1075 // When we haven't passed in Op0, Upper will be a constant. In order to
1078 // we need to use a handle to keep track of Upper in case it gets CSE'd by
1082 // SelectCode(Upper) later, along with the SelectCode(Or), and avoid needing
1087 HandleSDNode Handle(Upper);
1088 SelectCode(Upper.getNode());
1089 Upper = Handle.getValue();
1093 SDValue Or = CurDAG->getNode(Opcode, DL, VT, Upper, Lowe
[all...]
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DInstructionSimplify.cpp1558 APInt Upper = APInt(Width, 0); local
1562 Upper = CI2->getValue();
1565 Upper = CI2->getValue().abs();
1566 Lower = (-Upper) + 1;
1571 Upper = NegOne.udiv(CI2->getValue()) + 1;
1579 Upper = IntMax.sdiv(Val) + 1;
1585 Upper = NegOne.lshr(CI2->getValue()) + 1;
1592 Upper = IntMax.ashr(CI2->getValue()) + 1;
1599 Upper = CI2->getValue() + 1;
1601 if (Lower != Upper) {
[all...]
/external/eigen/Eigen/src/Core/util/
H A DConstants.h206 Upper=0x2, enumerator in enum:Eigen::UpLoType
207 /** %Matrix has ones on the diagonal; to be used in combination with #Lower or #Upper. */
209 /** %Matrix has zeros on the diagonal; to be used in combination with #Lower or #Upper. */
214 UnitUpper=UnitDiag|Upper,
218 StrictlyUpper=ZeroDiag|Upper,
/external/clang/lib/CodeGen/
H A DCGExpr.cpp1328 llvm::Value *Upper = Builder.CreateICmpSLE( local
1332 Check = Builder.CreateAnd(Upper, Lower);
/external/pdfium/fxjs/
H A Dcfxjse_formcalc_context.cpp282 {"Upper", CFXJSE_FormCalcContext::Upper},
4413 void CFXJSE_FormCalcContext::Upper(CFXJSE_Value* pThis, function in class:CFXJSE_FormCalcContext
4418 ToJSContext(pThis, nullptr)->ThrowParamCountMismatchException(L"Upper");
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.cpp7059 SDValue Upper = DAG.getNode(ISD::SRL, dl, MVT::i64, Result, local
7061 Upper = DAG.getNode(ISD::TRUNCATE, dl, MVT::i32, Upper);
7064 Results.push_back(Upper);
/external/swiftshader/third_party/LLVM/lib/Target/X86/
H A DX86ISelLowering.cpp3154 // Upper quadword shuffled.
3174 // Upper quadword copied in order.
5227 SDValue Upper = DAG.getNode(ISD::BUILD_VECTOR, dl, HVT, &V[NumElems / 2], local
5233 return Insert128BitVector(Vec, Upper, DAG.getConstant(NumElems/2, MVT::i32),
6927 bool Upper = IdxVal >= NumElems/2; local
6929 DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32), DAG, dl);
6932 Upper ? DAG.getConstant(IdxVal-NumElems/2, MVT::i32) : Idx);
7066 bool Upper = IdxVal >= NumElems/2; local
7067 SDValue Ins128Idx = DAG.getConstant(Upper ? NumElems/2 : 0, MVT::i32);
7072 N1, Upper
[all...]

Completed in 643 milliseconds

12