HomeSort by relevance Sort by last modified time
    Searched defs:Lower (Results 1 - 25 of 43) 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
43 void BPFMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/swiftshader/third_party/LLVM/lib/Target/Mips/
MipsMCInstLower.cpp 10 // This file contains code to lower Mips MachineInstrs to their corresponding
116 void MipsMCInstLower::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);
122 /// Return the lower value for this range.
124 const APInt &getLower() const { return Lower; }
132 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
164 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/Lanai/
LanaiMCInstLower.cpp 10 // This file contains code to lower Lanai MachineInstrs to their corresponding
95 void LanaiMCInstLower::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
57 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/swiftshader/third_party/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);
69 /// getLower - Return the lower value for this range...
71 const APInt &getLower() const { return Lower; }
79 uint32_t getBitWidth() const { return Lower.getBitWidth(); }
112 if (Upper == Lower + 1
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Target/MBlaze/
MBlazeMCInstLower.cpp 10 // This file contains code to lower MBlaze MachineInstrs to their corresponding
117 void MBlazeMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/swiftshader/third_party/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/icu/android_icu4j/src/main/java/android/icu/text/
CaseMap.java 43 public static Lower toLower() { return Lower.DEFAULT; }
75 public static final class Lower extends CaseMap {
76 private static final Lower DEFAULT = new Lower(0);
77 private static final Lower OMIT_UNCHANGED = new Lower(CaseMapImpl.OMIT_UNCHANGED_TEXT);
78 private Lower(int opt) { super(opt); }
85 public Lower omitUnchangedText() {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
CaseMap.java 43 public static Lower toLower() { return Lower.DEFAULT; }
80 public static final class Lower extends CaseMap {
81 private static final Lower DEFAULT = new Lower(0);
82 private static final Lower OMIT_UNCHANGED = new Lower(CaseMapImpl.OMIT_UNCHANGED_TEXT);
83 private Lower(int opt) { super(opt); }
91 public Lower omitUnchangedText() {
  /external/llvm/lib/Support/
ScaledNumber.cpp 34 uint64_t Upper = P1, Lower = P4;
36 uint64_t NewLower = Lower + (getL(N) << 32);
37 Upper += getU(N) + (NewLower < Lower);
38 Lower = NewLower;
45 return std::make_pair(Lower, 0);
51 Upper = Upper << LeadingZeros | Lower >> Shift;
53 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
219 // Lower register operand.
233 // Lower two register operands.
267 void MipsMCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
  /external/swiftshader/third_party/LLVM/lib/Target/X86/
X86MCInstLower.cpp 10 // This file contains code to lower X86 MachineInstrs to their corresponding
42 /// GetSymbolFromOperand - Lower an MO_GlobalAddress or MO_ExternalSymbol
301 void X86MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
412 // TAILJMPd, TAILJMPd64 - Lower to the correct jump instructions.
617 // Lower these as normal, but add some comments.
626 // Lower these as normal, but add some comments.
662 // Lower the MO_GOT_ABSOLUTE_ADDRESS form of ADD32ri.
676 // Now that we have emitted the label, lower the complex operand expression.
698 MCInstLowering.Lower(MI, TmpInst);
  /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 370 const SCEV *Lower[8];
    [all...]
  /external/llvm/lib/Analysis/
StratifiedSets.h 518 /// Checks to see if lowerIndex is at a level lower than upperIndex. If so, it
523 auto *Lower = &linksAt(LowerIndex);
525 if (Lower == Upper)
529 auto *Current = Lower;
542 if (Lower->hasBelow()) {
543 auto NewBelowIndex = Lower->getBelow();
  /external/swiftshader/third_party/LLVM/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /device/linaro/bootloader/edk2/MdeModulePkg/Universal/HiiDatabaseDxe/
ConfigKeywordHandler.c     [all...]
  /external/llvm/lib/Target/SystemZ/
SystemZISelDAGToDAG.cpp 606 // Lower a FrameIndex to a TargetFrameIndex.
619 // 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
52 /// X86MCInstLower - This class is used to lower an MachineInstr into an MCInst.
64 void Lower(const MachineInstr *MI, MCInst &OutMI) const;
120 /// GetSymbolFromOperand - Lower an MO_GlobalAddress or MO_ExternalSymbol
389 void X86MCInstLower::Lower(const MachineInstr *MI, MCInst &OutMI) const {
502 // TAILJMPd, TAILJMPd64 - Lower to the correct jump instructions.
    [all...]

Completed in 746 milliseconds

1 2