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

  /external/llvm/include/llvm/IR/
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;
58 /// Lower==Upper and Lower != Min or Max value for its type. It will also
60 ConstantRange(APIntMoveTy Lower, APIntMoveTy Upper);
76 /// getUpper - Return the upper value for this range...
78 const APInt &getUpper() const { return Upper; }
115 if (Upper == Lower + 1)
151 return Lower == CR.Lower && Upper == CR.Upper;
    [all...]
  /external/llvm/include/llvm/Support/
UnicodeCharRanges.h 26 /// \brief Represents a closed range of Unicode code points [Lower, Upper].
29 uint32_t Upper;
36 return Range.Upper < Value;
71 DEBUG(dbgs() << "Upper bound 0x");
77 if (I->Upper < I->Lower) {
78 DEBUG(dbgs() << "Upper bound 0x");
81 DEBUG(dbgs().write_hex(I->Upper) << "\n");
84 Prev = I->Upper;
  /external/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,
  /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, true);
165 if (Lower < Upper)
    [all...]
  /external/llvm/lib/IR/
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);
42 : Lower(std::move(V)), Upper(Lower + 1) {}
45 : Lower(std::move(L)), Upper(std::move(U)) {
46 assert(Lower.getBitWidth() == Upper.getBitWidth() &&
48 assert((Lower != Upper || (Lower.isMaxValue() || Lower.isMinValue())) &&
49 "Lower == Upper, but they aren't min or max value!");
120 return Lower == Upper && Lower.isMaxValue()
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 363 const SCEV *Upper[8];
562 /// If no upper bound is available, return NULL.
    [all...]
  /external/eigen/Eigen/src/Core/util/
Constants.h 168 /** View matrix as an upper triangular matrix. */
169 Upper=0x2,
170 /** %Matrix has ones on the diagonal; to be used in combination with #Lower or #Upper. */
172 /** %Matrix has zeros on the diagonal; to be used in combination with #Lower or #Upper. */
176 /** View matrix as an upper triangular matrix with ones on the diagonal. */
177 UnitUpper=UnitDiag|Upper,
180 /** View matrix as an upper triangular matrix with zeros on the diagonal. */
181 StrictlyUpper=ZeroDiag|Upper,
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ValueTracking.cpp 201 ConstantInt *Upper = cast<ConstantInt>(Ranges.getOperand(2*i + 1));
202 ConstantRange Range(Lower->getValue(), Upper->getValue());
205 unsigned LeadingZeros = (Upper->getValue() - 1).countLeadingZeros();
546 // the upper bits are all zero.
551 // the upper bits are all one.
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 113 // narrower (in which case the upper bits are don't care).
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxvahd.h 306 FLOAT Upper;
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]

Completed in 836 milliseconds