HomeSort by relevance Sort by last modified time
    Searched defs:Upper (Results 1 - 10 of 10) sorted by null

  /external/llvm/include/llvm/Support/
ConstantRange.h 11 // for an integral value. This keeps track of a lower and upper bound for the
13 // keeps track of a [lower, upper) bound, which specifies an interval just like
43 APInt Lower, Upper;
55 /// Lower==Upper and Lower != Min or Max value for its type. It will also
57 ConstantRange(const APInt &Lower, const APInt &Upper);
73 /// getUpper - Return the upper value for this range...
75 const APInt &getUpper() const { return Upper; }
112 if (Upper == Lower + 1)
148 return Lower == CR.Lower && Upper == CR.Upper;
    [all...]
  /external/clang/lib/Lex/
UnicodeCharSets.h 23 uint32_t Upper;
53 DEBUG(llvm::dbgs() << "Upper bound 0x");
59 if (I->Upper < I->Lower) {
60 DEBUG(llvm::dbgs() << "Upper bound 0x");
63 DEBUG(llvm::dbgs().write_hex(I->Upper) << "\n");
66 Prev = I->Upper;
92 else if (C > CharSet[MidPoint].Upper)
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 107 const llvm::APSInt &Upper,
123 if (i->From() > Upper) {
128 if (i->Includes(Upper)) {
130 BV.getValue(Upper)));
135 if (i->Includes(Upper)) {
136 newRanges = F.add(newRanges, Range(i->From(), BV.getValue(Upper)));
149 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const {
151 // both the upper and lower bounds against the symbol's type.
157 APSIntType::RangeTestResultKind UpperTest = Type.testInRange(Upper);
165 if (Lower < Upper)
    [all...]
  /external/llvm/lib/Support/
ConstantRange.cpp 11 // for an integral value. This keeps track of a lower and upper bound for the
13 // keeps track of a [lower, upper) bound, which specifies an interval just like
34 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);
    [all...]
  /external/eigen/Eigen/src/Core/util/
Constants.h 163 /** View matrix as an upper triangular matrix. */
164 Upper=0x2,
165 /** %Matrix has ones on the diagonal; to be used in combination with #Lower or #Upper. */
167 /** %Matrix has zeros on the diagonal; to be used in combination with #Lower or #Upper. */
171 /** View matrix as an upper triangular matrix with ones on the diagonal. */
172 UnitUpper=UnitDiag|Upper,
175 /** View matrix as an upper triangular matrix with zeros on the diagonal. */
176 StrictlyUpper=ZeroDiag|Upper,
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 329 const SCEV *Upper[8];
528 /// If no upper bound is available, return NULL.
753 /// computes the upper bound given the current direction settings
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ValueTracking.cpp 203 ConstantInt *Upper = cast<ConstantInt>(Ranges.getOperand(2*i + 1));
204 ConstantRange Range(Lower->getValue(), Upper->getValue());
207 unsigned LeadingZeros = (Upper->getValue() - 1).countLeadingZeros();
558 // the upper bits are all zero.
563 // the upper bits are all one.
    [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 153 milliseconds