Searched refs:High (Results 1 - 25 of 53) sorted by relevance

123

/external/clang/test/Index/
H A Dcomplete-type-factors.m9 High
31 [a method:Red priority:High];
41 // CHECK-CC1: EnumConstantDecl:{ResultType enum Priority}{TypedText High} (32)
56 // CHECK-CC2: EnumConstantDecl:{ResultType enum Priority}{TypedText High} (65)
72 // CHECK-CC3: EnumConstantDecl:{ResultType enum Priority}{TypedText High} (16)
88 // CHECK-CC4: EnumConstantDecl:{ResultType enum Priority}{TypedText High} (65)
106 // CHECK-CC6: EnumConstantDecl:{ResultType enum Priority}{TypedText High} (65)
122 // CHECK-CC7: EnumConstantDecl:{ResultType enum Priority}{TypedText High} (65)
134 // CHECK-CC8: EnumConstantDecl:{ResultType enum Priority}{TypedText High} (16)
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp55 Constant* High; member in struct:__anon25518::LowerSwitch::CaseRange
60 Low(low), High(high), BB(bb) { }
84 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
127 O << *B->Low << " -" << *B->High;
151 if (Begin->Low == LowerBound && Begin->High == UpperBound) {
166 << " -" << cast<ConstantInt>(Pivot.High)->getValue() << "\n");
185 NewUpperBound = cast<ConstantInt>(LastLHS->High);
239 if (Leaf.Low == Leaf.High) {
247 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High,
251 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High,
[all...]
/external/chromium_org/third_party/libvpx/source/libvpx/test/
H A Dregister_state_check.h27 return (lhs.Low == rhs.Low && lhs.High == rhs.High);
/external/libvpx/libvpx/test/
H A Dregister_state_check.h27 return (lhs.Low == rhs.Low && lhs.High == rhs.High);
/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/llvm/include/llvm/IR/
H A DInlineAsm.h242 assert((InputFlag & ~0xffff) == 0 && "High bits already contain data");
255 assert((InputFlag & ~0xffff) == 0 && "High bits already contain data");
293 unsigned High = Flag >> 16; local
296 if (!High)
298 RC = High - 1;
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/x86/
H A Dmul.pl12 $High="edx";
H A Dmul_add.pl12 $High="edx";
/external/openssl/crypto/bn/asm/x86/
H A Dmul.pl12 $High="edx";
H A Dmul_add.pl12 $High="edx";
/external/llvm/lib/Target/X86/
H A DX86RegisterInfo.h134 unsigned getX86SubSuperRegister(unsigned, MVT::SimpleValueType, bool High=false);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h134 const Constant *High; 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),
144 const APInt &rHigh = cast<ConstantInt>(High)->getValue();
190 assert(isa<ConstantInt>(C1.Low) && isa<ConstantInt>(C2.High));
192 const ConstantInt* CI2 = cast<const ConstantInt>(C2.High);
301 /// High Level Overview of SelectionDAG Stack Protector Generation:
/external/llvm/lib/IR/
H A DMetadata.cpp429 ConstantInt *High) {
430 ConstantRange NewRange(Low->getValue(), High->getValue());
437 Type *Ty = High->getType();
446 ConstantInt *High) {
448 if (tryMergeRange(EndPoints, Low, High))
452 EndPoints.push_back(High);
428 tryMergeRange(SmallVectorImpl<Value *> &EndPoints, ConstantInt *Low, ConstantInt *High) argument
445 addRange(SmallVectorImpl<Value *> &EndPoints, ConstantInt *Low, ConstantInt *High) argument
/external/chromium_org/third_party/skia/src/sfnt/
H A DSkPanose.h98 ((High, 8))
285 ((High, 8))
355 ((High, 5))
426 ((High, 8))
/external/skia/src/sfnt/
H A DSkPanose.h98 ((High, 8))
285 ((High, 8))
355 ((High, 5))
426 ((High, 8))
/external/vixl/test/examples/
H A Dtest-examples.cc366 #define CHECKBOUNDS_DOTEST(Value, Low, High) \
371 simulator.set_xreg(2, High); \
373 assert(regs.xreg(0) == ((Low <= Value) && (Value <= High))); \
/external/chromium_org/third_party/lzma_sdk/
H A D7z.h91 UInt32 High; member in struct:__anon12417
/external/lzma/C/
H A D7z.h91 UInt32 High; member in struct:__anon25848
/external/chromium_org/third_party/openssl/openssl/crypto/bn/asm/
H A Dbn-586.pl140 $High="edx";
256 $High="edx";
/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.cpp403 SDValue High = DAG.getLoad(getPointerTy(), DL, Chain, local
407 SDValue HighShifted = DAG.getNode(ISD::SHL, DL, MVT::i32, High, HighShift);
410 High.getValue(1));
467 SDValue High = DAG.getExtLoad(ISD::EXTLOAD, DL, MVT::i32, Chain, local
472 SDValue HighShifted = DAG.getNode(ISD::SHL, DL, MVT::i32, High,
476 High.getValue(1));
523 SDValue High = DAG.getNode(ISD::SRL, dl, MVT::i32, Value, local
531 SDValue StoreHigh = DAG.getTruncStore(Chain, dl, High, HighAddr,
1862 // High bits are known to be zero.
1868 // High bit
[all...]
/external/openssl/crypto/bn/asm/
H A Dbn-586.pl140 $High="edx";
256 $High="edx";
/external/llvm/lib/Target/SystemZ/
H A DSystemZISelLowering.cpp395 case 'h': // High-part register
438 case 'h': // High-part register
519 case 'h': // High-part register (an LLVM extension)
1411 uint64_t High = uint64_t(1) << HighShift; local
1459 if (EffectivelyUnsigned && CmpVal >= Mask - High && CmpVal < High) {
1465 if (EffectivelyUnsigned && CmpVal > Mask - High && CmpVal <= High) {
1472 // If there are just two bits, we can do equality checks for Low and High
1474 if (Mask == Low + High) {
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.c472 mTime.dwHighDateTime = f->MTime.High;

Completed in 644 milliseconds

123