Searched defs:High (Results 1 - 12 of 12) sorted by relevance

/external/llvm/unittests/ADT/
H A DVariadicFunctionTest.cpp88 void CountInRangeImpl(int *NumInRange, int Low, int High, argument
92 if (Low <= *Args[i] && *Args[i] <= High)
/external/jmonkeyengine/engine/src/test/jme3test/network/
H A DTestSerialization.java66 High, enum constant in enum:TestSerialization.Status
116 status1 = Status.High;
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp51 Constant* High; member in struct:__anon7836::LowerSwitch::CaseRange
55 Low(low), High(high), BB(bb) { }
77 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
120 O << *B->Low << " -" << *B->High;
148 << cast<ConstantInt>(Pivot.High)->getValue() << "\n");
186 if (Leaf.Low == Leaf.High) {
194 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High,
198 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High,
206 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High);
221 uint64_t Range = cast<ConstantInt>(Leaf.High)
[all...]
/external/llvm/include/llvm/
H A DInlineAsm.h233 assert((InputFlag & ~0xffff) == 0 && "High bits already contain data");
246 assert((InputFlag & ~0xffff) == 0 && "High bits already contain data");
284 unsigned High = Flag >> 16; local
287 if (!High)
289 RC = High - 1;
/external/llvm/lib/CodeGen/
H A DRenderMachineFunction.h261 typedef enum { Zero, Low, High } PressureState; enumerator in enum:llvm::RenderMachineFunction::__anon7397
/external/llvm/lib/Target/X86/
H A DX86RegisterInfo.cpp536 unsigned getX86SubSuperRegister(unsigned Reg, EVT VT, bool High) { argument
540 if (High) {
542 default: return getX86SubSuperRegister(Reg, MVT::i64, High);
665 if (High) {
/external/clang/lib/Basic/
H A DDiagnostic.cpp542 unsigned High = PluralNumber(Start, End); local
545 return Low <= Val && Val <= High;
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h133 const Constant *High; member in struct:llvm::SelectionDAGBuilder::Case
137 Case() : Low(0), High(0), BB(0), ExtraWeight(0) { }
139 uint32_t extraweight) : Low(low), High(high), BB(bb),
143 const APInt &rHigh = cast<ConstantInt>(High)->getValue();
187 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
189 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
H A DSelectionDAGBuilder.cpp1584 const APInt& High = cast<ConstantInt>(CB.CmpRHS)->getValue(); local
1590 Cond = DAG.getSetCC(dl, MVT::i1, CmpOp, DAG.getConstant(High, VT),
1596 DAG.getConstant(High-Low, VT), ISD::SETULE);
1932 if (Small.Low == Small.High && Big.Low == Big.High && Small.BB == Big.BB) {
2004 if (I->High == I->Low) {
2007 LHS = SV; RHS = I->High; MHS = NULL;
2010 LHS = I->Low; MHS = SV; RHS = I->High;
2055 const APInt &Last = cast<ConstantInt>(BackCase.High)->getValue();
2105 const APInt &High local
[all...]
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp447 SDValue High = DAG.getLoad(getPointerTy(), DL, Chain, local
451 SDValue HighShifted = DAG.getNode(ISD::SHL, DL, MVT::i32, High, HighShift);
454 High.getValue(1));
465 SDValue High = DAG.getExtLoad(ISD::EXTLOAD, DL, MVT::i32, Chain, local
470 SDValue HighShifted = DAG.getNode(ISD::SHL, DL, MVT::i32, High,
474 High.getValue(1));
523 SDValue High = DAG.getNode(ISD::SRL, dl, MVT::i32, Value, local
531 SDValue StoreHigh = DAG.getTruncStore(Chain, dl, High, HighAddr,
/external/llvm/lib/VMCore/
H A DVerifier.cpp1373 ConstantInt *High = dyn_cast<ConstantInt>(Range->getOperand(2*i + 1)); local
1374 Assert1(High, "The upper limit must be an integer!", High);
1375 Assert1(High->getType() == Low->getType() &&
1376 High->getType() == ElTy, "Range types must match load type!",
1378 Assert1(High->getValue() != Low->getValue(), "Range must not be empty!",
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp166 StringRef Op, int Low, int High);
3416 int Low, int High) {
3451 if (Val < Low || Val > High) {
3415 parsePKHImm(SmallVectorImpl<MCParsedAsmOperand*> &Operands, StringRef Op, int Low, int High) argument

Completed in 4711 milliseconds