Searched refs:Low (Results 26 - 50 of 50) sorted by relevance

12

/external/chromium_org/third_party/lcov/contrib/galaxy/
H A Dposterize.pl240 (Low Coverage) 1 15 Lo_Color key % blue
/external/llvm/include/llvm/Support/
H A DMathExtras.h266 inline uint64_t Make_64(uint32_t High, uint32_t Low) { argument
267 return ((uint64_t)High << 32) | (uint64_t)Low;
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.cpp400 SDValue Low = DAG.getLoad(getPointerTy(), DL, Chain, local
406 SDValue LowShifted = DAG.getNode(ISD::SRL, DL, MVT::i32, Low, LowShift);
409 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Low.getValue(1),
462 SDValue Low = DAG.getExtLoad(ISD::ZEXTLOAD, DL, MVT::i32, Chain, local
474 SDValue Result = DAG.getNode(ISD::OR, DL, MVT::i32, Low, HighShifted);
475 Chain = DAG.getNode(ISD::TokenFactor, DL, MVT::Other, Low.getValue(1),
522 SDValue Low = Value; local
525 SDValue StoreLow = DAG.getTruncStore(Chain, dl, Low, BasePtr,
/external/openssl/crypto/bn/asm/
H A Dbn-586.pl139 $Low="eax";
255 $Low="eax";
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp1671 const APInt& Low = cast<ConstantInt>(CB.CmpLHS)->getValue();
1682 VT, CmpOp, DAG.getConstant(Low, VT));
1684 DAG.getConstant(High-Low, VT), ISD::SETULE);
2098 if (Small.Low == Small.High && Big.Low == Big.High && Small.BB == Big.BB) {
2099 const APInt& SmallValue = cast<ConstantInt>(Small.Low)->getValue();
2100 const APInt& BigValue = cast<ConstantInt>(Big.Low)->getValue();
2189 if (I->High == I->Low) {
2195 LHS = I->Low; MHS = SV; RHS = I->High;
2241 const APInt &First = cast<ConstantInt>(FrontCase.Low)
[all...]
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp1412 uint64_t Low = uint64_t(1) << countTrailingZeros(Mask); local
1425 if (EffectivelyUnsigned && CmpVal <= Low) {
1431 if (EffectivelyUnsigned && CmpVal < Low) {
1445 if (EffectivelyUnsigned && CmpVal >= Mask - Low && CmpVal < Mask) {
1451 if (EffectivelyUnsigned && CmpVal > Mask - Low && CmpVal <= Mask) {
1472 // If there are just two bits, we can do equality checks for Low and High
1474 if (Mask == Low + High) {
1475 if (CCMask == SystemZ::CCMASK_CMP_EQ && CmpVal == Low)
1477 if (CCMask == SystemZ::CCMASK_CMP_NE && CmpVal == Low)
2146 unsigned High, Low; local
[all...]
/external/lzma/C/Util/7z/
H A D7zMain.c226 UInt64 v64 = (ft->Low | ((UInt64)ft->High << 32)) / 10000000;
/external/lzma/C/Util/SfxSetup/
H A DSfxSetup.c471 mTime.dwLowDateTime = f->MTime.Low;
/external/stressapptest/src/
H A Dworker.h208 Low, enumerator in enum:WorkerThread::Priority
/external/clang/lib/Basic/
H A DDiagnostic.cpp499 unsigned Low = PluralNumber(Start, End); local
505 return Low <= Val && Val <= High;
/external/chromium_org/third_party/lzma_sdk/
H A D7zIn.c1069 f->MTime.Low = f->MTime.High = 0;
1072 RINOK(SzReadUInt32(sd, &f->MTime.Low));
/external/lzma/C/
H A D7zIn.c1069 f->MTime.Low = f->MTime.High = 0;
1072 RINOK(SzReadUInt32(sd, &f->MTime.Low));
/external/oprofile/events/mips/34K/
H A Devents69 event:0x2f counters:0 um:zero minimum:500 name:RELAX_STALLS : 47-0 Low power stall cycles (operations) as requested by the policy manager
/external/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp2671 APInt Low; local
2675 Low = ReadWideAPInt(makeArrayRef(&Record[CurIdx], ActiveWords),
2692 for ( ; Low.ule(High); ++Low)
2693 CaseVals.push_back(ConstantInt::get(Context, Low));
2695 CaseVals.push_back(ConstantInt::get(Context, Low));
/external/llvm/lib/IR/
H A DVerifier.cpp1922 ConstantInt *Low = dyn_cast<ConstantInt>(Range->getOperand(2*i)); local
1923 Assert1(Low, "The lower limit must be an integer!", Low);
1926 Assert1(High->getType() == Low->getType() &&
1931 APInt LowV = Low->getValue();
/external/oprofile/events/mips/1004K/
H A Devents70 event:0x2f counters:0 um:zero minimum:500 name:RELAX_STALLS : 47-0 Low power stall cycles (operations) as requested by the policy manager
/external/clang/lib/CodeGen/
H A DCGExpr.cpp433 static llvm::Value *emitHash16Bytes(CGBuilderTy &Builder, llvm::Value *Low, argument
437 llvm::Value *A0 = Builder.CreateMul(Builder.CreateXor(Low, High), KMul);
550 llvm::Value *Low = llvm::ConstantInt::get(Int64Ty, TypeHash); local
556 llvm::Value *Hash = emitHash16Bytes(Builder, Low, High);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp859 APInt Low = APInt::getLowBitsSet(BigBitSize, SmallBitSize); local
860 if ((Low & AndCst->getValue()) == 0 && (Low & BigCst->getValue()) == 0) {
861 Value *NewAnd = Builder->CreateAnd(V, Low | AndCst->getValue());
/external/clang/lib/Sema/
H A DSemaChecking.cpp1963 /// TheCall is a constant expression in the range [Low, High].
1965 int Low, int High) {
1977 if (Result.getSExtValue() < Low || Result.getSExtValue() > High)
1979 << Low << High << Arg->getSourceRange();
1964 SemaBuiltinConstantArgRange(CallExpr *TheCall, int ArgNum, int Low, int High) argument
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.Tools.pas637 // for compiler, Abs(Low(Integer)) is a null op.
/external/llvm/lib/Target/ARM/AsmParser/
H A DARMAsmParser.cpp293 OperandMatchResultTy parsePKHImm(OperandVector &O, StringRef Op, int Low,
4002 ARMAsmParser::parsePKHImm(OperandVector &Operands, StringRef Op, int Low, argument
4039 if (Val < Low || Val > High) {
/external/chromium_org/third_party/usb_ids/
H A Dusb.ids15946 AT 0307 Low Frequency Effects Speaker
16462 00c Low Cut Filter
16479 01d Battery Low
16741 168 Channel Low Frequency Enhancement
17125 053 Low Voltage Transfer
/external/chromium_org/tools/findit/common/
H A Dcacert.pem479 AddTrust Low-Value Services Root
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp3668 static bool isUndefOrInRange(int Val, int Low, int Hi) { argument
3669 return (Val < 0) || (Val >= Low && Val < Hi);
3682 unsigned Pos, unsigned Size, int Low) {
3683 for (unsigned i = Pos, e = Pos+Size; i != e; ++i, ++Low)
3684 if (!isUndefOrEqual(Mask[i], Low))
3681 isSequentialOrUndefInRange(ArrayRef<int> Mask, unsigned Pos, unsigned Size, int Low) argument
/external/clang/include/clang/Sema/
H A DSema.h8249 int Low, int High);

Completed in 794 milliseconds

12