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

  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriterPass.cpp 79 const APInt &Low = r.getLow();
82 for (APInt V = Low; V != High; V++) {
  /frameworks/compile/slang/BitWriter_2_9_func/
BitcodeWriterPass.cpp 79 const APInt &Low = r.getLow();
82 for (APInt V = Low; V != High; V++) {
  /frameworks/av/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/av/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/jmonkeyengine/engine/src/test/jme3test/network/
TestSerialization.java 68 Low;
  /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) { }
108 O << *B->Low << " -" << *B->High;
135 << cast<ConstantInt>(Pivot.Low)->getValue() << " -"
151 Val, Pivot.Low, "Pivot");
174 if (Leaf.Low == Leaf.High) {
177 Leaf.Low, "SwitchLeaf");
180 if (cast<ConstantInt>(Leaf.Low)->isMinValue(true /*isSigned*/))
    [all...]
  /external/llvm/lib/Transforms/IPO/
ArgumentPromotion.cpp 255 std::set<ArgPromotion::IndicesVector>::iterator Low;
256 Low = Set.upper_bound(Indices);
257 if (Low != Set.begin())
258 Low--;
259 // Low is now the last element smaller than or equal to Indices. This means
264 return Low != Set.end() && IsPrefix(*Low, Indices);
274 std::set<ArgPromotion::IndicesVector>::iterator Low;
275 Low = Safe.upper_bound(ToMark);
277 if (Low != Safe.begin()
    [all...]
  /external/clang/lib/Basic/
Diagnostic.cpp 558 unsigned Low = PluralNumber(Start, End);
564 return Low <= Val && Val <= High;
    [all...]
  /external/llvm/include/llvm/Support/
IntegersSubset.h 182 IntType Low;
193 Low(RHS.Low), High(RHS.High),
196 Low(C), High(C), IsEmpty(false), IsSingleNumber(true) {}
198 IntRange(const IntType &L, const IntType &H) : Low(L), High(H),
199 IsEmpty(false), IsSingleNumber(Low == High) {}
206 return Low;
216 if (Low == RHS.Low) {
221 if (Low < RHS.Low
    [all...]
IntegersSubsetMapping.h 318 const IntTy *Low = &OldItems.begin()->first.getLow();
330 RangeEx R(*Low, *High, Weight);
332 Low = &j->first.getLow();
338 RangeEx R(*Low, *High, Weight);
351 void add(const IntTy &Low, const IntTy &High, SuccessorClass *S = 0) {
352 RangeTy R(Low, High);
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h 132 const Constant *Low;
137 Case() : Low(0), High(0), BB(0), ExtraWeight(0) { }
138 Case(const Constant *low, const Constant *high, MachineBasicBlock *bb,
139 uint32_t extraweight) : Low(low), High(high), BB(bb),
144 const APInt &rLow = cast<ConstantInt>(Low)->getValue();
SelectionDAGBuilder.cpp 63 /// LimitFloatPrecision - Generate low-precision inline sequences for
69 cl::desc("Generate low-precision inline sequences "
    [all...]
  /external/stressapptest/src/
worker.h 206 // Enum to mark a thread as low/med/high priority.
208 Low,
  /external/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp     [all...]
  /external/llvm/lib/Target/XCore/
XCoreISelLowering.cpp 431 // ldw low, base[offset >> 2]
433 // shr low_shifted, low, (offset & 0x3) * 8
444 SDValue Low = DAG.getLoad(getPointerTy(), DL, Chain,
450 SDValue LowShifted = DAG.getNode(ISD::SRL, DL, MVT::i32, Low, LowShift);
453 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Low.getValue(1),
460 SDValue Low = DAG.getExtLoad(ISD::ZEXTLOAD, DL, MVT::i32, Chain,
472 SDValue Result = DAG.getNode(ISD::OR, DL, MVT::i32, Low, HighShifted);
473 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Low.getValue(1),
522 SDValue Low = Value;
525 SDValue StoreLow = DAG.getTruncStore(Chain, dl, Low, BasePtr
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineAndOrXor.cpp 363 // Otherwise, if Mask is 0+1+0+, and if B is known to have the low 0+
778 // Check that the low bits are zero.
779 APInt Low = APInt::getLowBitsSet(BigBitSize, SmallBitSize);
780 if ((Low & AndCst->getValue()) == 0 && (Low & BigCst->getValue()) == 0) {
781 Value *NewAnd = Builder->CreateAnd(V, Low | AndCst->getValue());
    [all...]
  /external/llvm/lib/VMCore/
Verifier.cpp     [all...]

Completed in 486 milliseconds