HomeSort by relevance Sort by last modified time
    Searched defs:Low (Results 1 - 10 of 10) sorted by null

  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 107 Low RN 2
293 RSB Low,High,#0 ;// Low = -32*scaleFactor
298 CMP diffMVdx,Low ;// If diffMVdx<Low
312 CMP diffMVdx,Low
313 ADDLT diffMVdx,diffMVdx,Range ;// If diffMVdy<Low diffMVdy+=Range
  /frameworks/base/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/m4p2/src/
omxVCM4P2_DecodePadMV_PVOP_s.s 107 Low RN 2
293 RSB Low,High,#0 ;// Low = -32*scaleFactor
298 CMP diffMVdx,Low ;// If diffMVdx<Low
312 CMP diffMVdx,Low
313 ADDLT diffMVdx,diffMVdx,Range ;// If diffMVdy<Low diffMVdy+=Range
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 50 Constant* Low;
54 CaseRange(Constant *low = 0, Constant *high = 0, BasicBlock *bb = 0) :
55 Low(low), High(high), BB(bb) { }
76 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
120 O << *B->Low << " -" << *B->High;
147 << cast<ConstantInt>(Pivot.Low)->getValue() << " -"
163 Val, Pivot.Low, "Pivot");
186 if (Leaf.Low == Leaf.High) {
189 Leaf.Low, "SwitchLeaf")
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 511 unsigned Low = PluralNumber(Start, End);
517 return Low <= Val && Val <= High;
  /external/llvm/lib/CodeGen/
RenderMachineFunction.h 261 typedef enum { Zero, Low, High } PressureState;
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 258 std::set<ArgPromotion::IndicesVector>::iterator Low;
259 Low = Set.upper_bound(Indices);
260 if (Low != Set.begin())
261 Low--;
262 // Low is now the last element smaller than or equal to Indices. This means
267 return Low != Set.end() && IsPrefix(*Low, Indices);
277 std::set<ArgPromotion::IndicesVector>::iterator Low;
278 Low = Safe.upper_bound(ToMark);
280 if (Low != Safe.begin()
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 132 Constant* Low;
137 Case() : Low(0), High(0), BB(0), ExtraWeight(0) { }
138 Case(Constant* low, Constant* high, MachineBasicBlock* bb,
139 uint32_t extraweight) : Low(low), High(high), BB(bb),
144 const APInt &rLow = cast<ConstantInt>(Low)->getValue();
187 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
188 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
SelectionDAGBuilder.cpp 61 /// LimitFloatPrecision - Generate low-precision inline sequences for
67 cl::desc("Generate low-precision inline sequences "
    [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 424 // ldw low, base[offset >> 2]
426 // shr low_shifted, low, (offset & 0x3) * 8
437 SDValue Low = DAG.getLoad(getPointerTy(), DL, Chain,
441 SDValue LowShifted = DAG.getNode(ISD::SRL, DL, MVT::i32, Low, LowShift);
444 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Low.getValue(1),
451 SDValue Low = DAG.getExtLoad(ISD::ZEXTLOAD, DL, MVT::i32, Chain,
463 SDValue Result = DAG.getNode(ISD::OR, DL, MVT::i32, Low, HighShifted);
464 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Low.getValue(1),
513 SDValue Low = Value;
516 SDValue StoreLow = DAG.getTruncStore(Chain, dl, Low, BasePtr
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 426 // Otherwise, if Mask is 0+1+0+, and if B is known to have the low 0+
798 // Check that the low bits are zero.
799 APInt Low = APInt::getLowBitsSet(BigBitSize, SmallBitSize);
800 if ((Low & AndCst->getValue()) == 0 && (Low & BigCst->getValue()) == 0) {
801 Value *NewAnd = Builder->CreateAnd(V, Low | AndCst->getValue());
    [all...]

Completed in 542 milliseconds