HomeSort by relevance Sort by last modified time
    Searched defs:Lower (Results 1 - 25 of 26) sorted by null

1 2

  /external/libchrome/sandbox/linux/services/
resource_limits.cc 15 bool ResourceLimits::Lower(int resource, rlim_t limit) {
  /external/llvm/lib/Target/BPF/
BPFMCInstLower.cpp 10 // This file contains code to lower BPF MachineInstrs to their corresponding
44 void BPFMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /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
44 APInt Lower, Upper;
59 /// Lower==Upper and Lower != Min or Max value for its type. It will also
61 ConstantRange(APIntMoveTy Lower, APIntMoveTy Upper);
96 /// Return the lower value for this range.
98 const APInt &getLower() const { return Lower; }
106 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
138 if (Upper == Lower + 1
    [all...]
  /external/llvm/include/llvm/Support/
UnicodeCharRanges.h 26 /// \brief Represents a closed range of Unicode code points [Lower, Upper].
28 uint32_t Lower;
33 return Value < Range.Lower;
79 if (I != Ranges.begin() && Prev >= I->Lower) {
82 DEBUG(dbgs() << " should be less than succeeding lower bound 0x");
83 DEBUG(dbgs().write_hex(I->Lower) << "\n");
86 if (I->Upper < I->Lower) {
88 DEBUG(dbgs().write_hex(I->Lower));
89 DEBUG(dbgs() << " should not be less than lower bound 0x");
  /external/llvm/lib/Target/AArch64/
AArch64MCInstLower.cpp 10 // This file contains code to lower AArch64 MachineInstrs to their corresponding
207 void AArch64MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/llvm/lib/Target/MSP430/
MSP430MCInstLower.cpp 10 // This file contains code to lower MSP430 MachineInstrs to their corresponding
113 void MSP430MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/llvm/lib/Target/WebAssembly/
WebAssemblyMCInstLower.cpp 11 /// \brief This file contains code to lower WebAssembly MachineInstrs to their
56 void WebAssemblyMCInstLower::Lower(const MachineInstr *MI,
  /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/llvm/lib/Support/
ScaledNumber.cpp 33 uint64_t Upper = P1, Lower = P4;
35 uint64_t NewLower = Lower + (getL(N) << 32);
36 Upper += getU(N) + (NewLower < Lower);
37 Lower = NewLower;
44 return std::make_pair(Lower, 0);
50 Upper = Upper << LeadingZeros | Lower >> Shift;
52 Shift && (Lower & UINT64_C(1) << (Shift - 1)));
  /external/llvm/lib/Target/Mips/
MipsMCInstLower.cpp 10 // This file contains code to lower Mips MachineInstrs to their corresponding
175 // Lower register operand.
189 // Lower two register operands.
226 void MipsMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/clang/lib/StaticAnalyzer/Core/
RangeConstraintManager.cpp 115 const llvm::APSInt &Lower,
129 if (i->To() < Lower) {
136 if (i->Includes(Lower)) {
138 newRanges = F.add(newRanges, Range(BV.getValue(Lower),
142 newRanges = F.add(newRanges, Range(BV.getValue(Lower), i->To()));
158 bool pin(llvm::APSInt &Lower, llvm::APSInt &Upper) const {
160 // both the upper and lower bounds against the symbol's type.
165 APSIntType::RangeTestResultKind LowerTest = Type.testInRange(Lower, true);
174 if (Lower < Upper)
178 Lower = Type.getMinValue()
    [all...]
  /external/llvm/include/llvm/Analysis/
DependenceAnalysis.h 367 const SCEV *Lower[8];
    [all...]
  /external/eigen/Eigen/src/Core/util/
Constants.h 166 /** View matrix as a lower triangular matrix. */
167 Lower=0x1,
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. */
174 /** View matrix as a lower triangular matrix with ones on the diagonal. */
175 UnitLower=UnitDiag|Lower,
178 /** View matrix as a lower triangular matrix with zeros on the diagonal. */
179 StrictlyLower=ZeroDiag|Lower,
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 601 // Lower a FrameIndex to a TargetFrameIndex.
614 // Lower the displacement to a TargetConstant.
    [all...]
  /external/llvm/lib/Target/X86/
X86MCInstLower.cpp 10 // This file contains code to lower X86 MachineInstrs to their corresponding
44 /// X86MCInstLower - This class is used to lower an MachineInstr into an MCInst.
56 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
126 /// GetSymbolFromOperand - Lower an MO_GlobalAddress or MO_ExternalSymbol
436 void X86MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
553 // TAILJMPd, TAILJMPd64 - Lower to the correct jump instructions.
    [all...]
X86ISelLowering.cpp 10 // This file defines the interfaces that X86 uses to lower LLVM code into a
376 // If we don't have F16C support, then lower half float conversions
542 // Lower this to FGETSIGNx86 plus an AND.
    [all...]
  /external/v8/test/cctest/compiler/
test-simplified-lowering.cc 719 Lower();
726 Lower();
734 Lower();
738 void Lower() {
837 t.Lower();
853 t.Lower();
869 t.Lower();
885 t.Lower();
902 t.Lower();
914 t.Lower();
    [all...]
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
ValueTracking.cpp 380 ConstantInt *Lower =
384 ConstantRange Range(Lower->getValue(), Upper->getValue());
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
dxvahd.h 305 FLOAT Lower;
  /external/clang/lib/CodeGen/
CGExpr.cpp     [all...]
  /external/pdfium/xfa/src/fxfa/src/fm2js/
xfa_fm2jscontext.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMISelLowering.cpp 10 // This file defines the interfaces that ARM uses to lower LLVM code into a
    [all...]
  /prebuilts/tools/linux-x86_64/kythe/extractors/
javac_extractor.jar 
  /prebuilts/tools/linux-x86_64/kythe/indexers/
java_indexer.jar 

Completed in 668 milliseconds

1 2