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

  /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/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/StaticAnalyzer/Core/
RangeConstraintManager.cpp 110 const llvm::APSInt &Upper,
126 if (i->From() > Upper) {
131 if (i->Includes(Upper)) {
133 BV.getValue(Upper)));
138 if (i->Includes(Upper)) {
139 newRanges = F.add(newRanges, Range(i->From(), BV.getValue(Upper)));
152 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const {
154 // both the upper and lower bounds against the symbol's type.
160 APSIntType::RangeTestResultKind UpperTest = Type.testInRange(Upper);
168 if (Lower < Upper)
    [all...]
  /external/icu4c/data/brkitr/
sent.txt 23 $Upper = [\p{Sentence_Break = Upper}];
38 $UpperEx = $Upper ($Extend | $Format)*;
70 $NotLettersEx = [^$OLetter $Upper $Lower $Sep $CR $LF $ATerm $STerm] ($Extend | $Format)*;
sent_el.txt 23 $Upper = [\p{Sentence_Break = Upper}];
38 $UpperEx = $Upper ($Extend | $Format)*;
70 $NotLettersEx = [^$OLetter $Upper $Lower $Sep $CR $LF $ATerm $STerm] ($Extend | $Format)*;
  /external/webkit/LayoutTests/fast/url/script-tests/
ipv6.js 26 // Upper case letters should be lowercased.
  /external/llvm/lib/VMCore/
Instructions.cpp     [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();
546 // the upper bits are all zero.
551 // the upper bits are all one.
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/Getopt/
Mixed.pm 85 # Ignore case unless there are upper-case options:
624 descriptions contain an upper-case letter.
688 The string should consist only of letters. Upper case letters are
  /external/v8/src/
array.js 815 var low_end = from + 1; // Upper bound of elements lower than pivot.
    [all...]
  /external/llvm/lib/Target/X86/
X86ISelLowering.cpp     [all...]
  /external/clang/lib/Sema/
SemaDeclCXX.cpp     [all...]

Completed in 843 milliseconds