HomeSort by relevance Sort by last modified time
    Searched defs:Lower (Results 1 - 16 of 16) 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;
63 /// Lower==Upper and Lower != Min or Max value for its type. It will also
65 ConstantRange(APIntMoveTy Lower, APIntMoveTy Upper);
77 /// getLower - Return the lower value for this range...
79 const APInt &getLower() const { return Lower; }
87 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
120 if (Upper == Lower + 1
    [all...]
UnicodeCharRanges.h 23 uint32_t Lower;
46 if (I != CharSet.begin() && Prev >= I->Lower) {
49 DEBUG(llvm::dbgs() << " should be less than succeeding lower bound 0x");
50 DEBUG(llvm::dbgs().write_hex(I->Lower) << "\n");
53 if (I->Upper < I->Lower) {
55 DEBUG(llvm::dbgs().write_hex(I->Lower));
56 DEBUG(llvm::dbgs() << " should not be less than lower bound 0x");
87 if (C < CharSet[MidPoint].Lower)
  /external/llvm/lib/Target/MSP430/
MSP430MCInstLower.cpp 10 // This file contains code to lower MSP430 MachineInstrs to their corresponding
109 void MSP430MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/llvm/lib/Target/Mips/
MipsMCInstLower.cpp 10 // This file contains code to lower Mips MachineInstrs to their corresponding
155 void MipsMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/llvm/lib/Target/XCore/
XCoreMCInstLower.cpp 11 /// \brief This file contains code to lower XCore MachineInstrs to their
107 void XCoreMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/clang/lib/Lex/
UnicodeCharSets.h 22 uint32_t Lower;
52 if (Prev >= I->Lower) {
55 DEBUG(llvm::dbgs() << " should be less than succeeding lower bound 0x");
56 DEBUG(llvm::dbgs().write_hex(I->Lower) << "\n");
59 if (I->Upper < I->Lower) {
61 DEBUG(llvm::dbgs().write_hex(I->Lower));
62 DEBUG(llvm::dbgs() << " should not be less than lower bound 0x");
90 if (C < CharSet[MidPoint].Lower)
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 106 const llvm::APSInt &Lower,
120 if (i->To() < Lower) {
127 if (i->Includes(Lower)) {
129 newRanges = F.add(newRanges, Range(BV.getValue(Lower),
133 newRanges = F.add(newRanges, Range(BV.getValue(Lower), i->To()));
149 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const {
151 // both the upper and lower bounds against the symbol's type.
156 APSIntType::RangeTestResultKind LowerTest = Type.testInRange(Lower, true);
165 if (Lower < Upper)
169 Lower = Type.getMinValue()
    [all...]
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 10 // This file contains code to lower X86 MachineInstrs to their corresponding
34 /// X86MCInstLower - This class is used to lower an MachineInstr into an MCInst.
46 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
67 /// GetSymbolFromOperand - Lower an MO_GlobalAddress or MO_ExternalSymbol
336 void X86MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
469 // TAILJMPd, TAILJMPd64 - Lower to the correct jump instructions.
703 // Lower these as normal, but add some comments.
712 // Lower these as normal, but add some comments.
746 // Lower the MO_GOT_ABSOLUTE_ADDRESS form of ADD32ri.
760 // Now that we have emitted the label, lower the complex operand expression
    [all...]
X86ISelLowering.cpp 10 // This file defines the interfaces that X86 uses to lower LLVM code into a
162 /// BUILD_VECTORS returns a larger BUILD_VECTOR while we're trying to lower
662 // Lower this to FGETSIGNx86 plus an AND.
    [all...]
  /external/eigen/Eigen/src/Core/util/
Constants.h 161 /** View matrix as a lower triangular matrix. */
162 Lower=0x1,
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. */
169 /** View matrix as a lower triangular matrix with ones on the diagonal. */
170 UnitLower=UnitDiag|Lower,
173 /** View matrix as a lower triangular matrix with zeros on the diagonal. */
174 StrictlyLower=ZeroDiag|Lower,
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 364 const SCEV *Lower[8];
782 /// computes the lower bound given the current direction settings
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ValueTracking.cpp 202 ConstantInt *Lower = cast<ConstantInt>(Ranges.getOperand(2*i + 0));
204 ConstantRange Range(Lower->getValue(), Upper->getValue());
    [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 539 // Lower a FrameIndex to a TargetFrameIndex.
552 // Lower the displacement to a TargetConstant.
898 SDValue Lower = CurDAG->getConstant(LowerVal, VT);
899 SDValue Or = CurDAG->getNode(Opcode, DL, VT, Upper, Lower);
    [all...]
  /external/chromium_org/gpu/command_buffer/
build_gles2_cmd_buffer.py     [all...]
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]

Completed in 164 milliseconds