Searched refs:Low (Results 1 - 25 of 50) sorted by path

12

/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/chromium_org/content/browser/power_profiler/
H A Dpower_data_provider.h27 Low enumerator in enum:content::PowerDataProvider::AccuracyLevel
H A Dpower_profiler_service.cc56 case PowerDataProvider::Low:
57 return "Low";
/external/chromium_org/third_party/boringssl/src/crypto/bn/asm/
H A Dbn-586.pl139 $Low="eax";
255 $Low="eax";
/external/chromium_org/third_party/lcov/contrib/galaxy/
H A Dposterize.pl240 (Low Coverage) 1 15 Lo_Color key % blue
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dregister_state_check.h41 return (lhs.Low == rhs.Low && lhs.High == rhs.High);
/external/chromium_org/third_party/lzma_sdk/
H A D7z.h90 UInt32 Low; member in struct:__anon13417
H A D7zIn.c1069 f->MTime.Low = f->MTime.High = 0;
1072 RINOK(SzReadUInt32(sd, &f->MTime.Low));
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkPanose.h94 ((Low, 4))
281 ((Low, 4))
353 ((Low, 3))
422 ((Low, 4))
/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/clang/include/clang/Sema/
H A DSema.h8249 int Low, int High);
/external/clang/lib/Basic/
H A DDiagnostic.cpp499 unsigned Low = PluralNumber(Start, End); local
505 return Low <= Val && Val <= High;
/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/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/clang/test/Index/
H A Dcomplete-type-factors.m8 Low,
32 [A method:Red priority:Low];
44 // CHECK-CC1: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (32)
59 // CHECK-CC2: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65)
75 // CHECK-CC3: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (16)
91 // CHECK-CC4: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65)
109 // CHECK-CC6: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65)
123 // CHECK-CC7: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (65)
135 // CHECK-CC8: EnumConstantDecl:{ResultType enum Priority}{TypedText Low} (16)
/external/libvpx/libvpx/test/
H A Dregister_state_check.h27 return (lhs.Low == rhs.Low && lhs.High == rhs.High);
/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/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/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...]
H A DSelectionDAGBuilder.h133 const Constant *Low; member in struct:llvm::SelectionDAGBuilder::Case
138 Case() : Low(nullptr), High(nullptr), BB(nullptr), ExtraWeight(0) { }
140 uint32_t extraweight) : Low(low), High(high), BB(bb),
145 const APInt &rLow = cast<ConstantInt>(Low)->getValue();
190 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
191 const ConstantInt* CI1 = cast<const ConstantInt>(C1.Low);
/external/llvm/lib/IR/
H A DMetadata.cpp428 static bool tryMergeRange(SmallVectorImpl<Value *> &EndPoints, ConstantInt *Low, argument
430 ConstantRange NewRange(Low->getValue(), High->getValue());
445 static void addRange(SmallVectorImpl<Value *> &EndPoints, ConstantInt *Low, argument
448 if (tryMergeRange(EndPoints, Low, High))
451 EndPoints.push_back(Low);
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/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/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...]

Completed in 1085 milliseconds

12