Searched defs:Comp (Results 1 - 12 of 12) sorted by relevance

/external/clang/include/clang/Lex/
H A DPPConditionalDirectiveRecord.h42 class Comp { class in class:clang::PPConditionalDirectiveRecord::CondDirectiveLoc
45 explicit Comp(SourceManager &SM) : SM(SM) {} function in class:clang::PPConditionalDirectiveRecord::CondDirectiveLoc::Comp
/external/clang/test/SemaTemplate/
H A Dinstantiate-template-template-parm.cpp49 struct Comp { struct
61 Comp<int, lt> c0;
/external/llvm/lib/Support/
H A DTriple.cpp397 StringRef Comp = Components[Idx]; local
401 Arch = parseArch(Comp);
405 Vendor = parseVendor(Comp);
409 OS = parseOS(Comp);
413 Environment = parseEnvironment(Comp);
467 assert(Pos < Components.size() && Components[Pos] == Comp &&
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp150 ICmpInst* Comp = new ICmpInst(ICmpInst::ICMP_ULT, local
152 NewNode->getInstList().push_back(Comp);
153 BranchInst::Create(LBranch, RBranch, Comp, NewNode);
173 ICmpInst* Comp = NULL; local
176 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_EQ, Val,
182 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_SLE, Val, Leaf.High,
186 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Val, Leaf.High,
195 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound,
202 BranchInst::Create(Succ, Default, Comp, NewLeaf);
/external/openssh/
H A Dkex.h83 typedef struct Comp Comp; typedef in typeref:struct:Comp
107 struct Comp { struct
115 Comp comp;
/external/clang/test/SemaCXX/
H A Dnew-delete.cpp158 class Comp : public Tier {}; class in inherits:Tier
166 const Comp *dict;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1017 APInt Comp = CmpRHSV << ShAmtVal; local
1018 ConstantInt *ShiftedCmpRHS = Builder->getInt(Comp);
1020 Comp = Comp.lshr(ShAmtVal);
1022 Comp = Comp.ashr(ShAmtVal);
1024 if (Comp != CmpRHSV) { // Comparing against a bit that we know is zero.
1426 Constant *Comp = local
1429 if (Comp != RHS) {// Comparing against a bit that we know is zero.
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp1082 CodeGenSubRegIndex *Comp = A->compose(B); local
1083 if (Comp)
1084 return Comp;
1088 Comp = createSubRegIndex(Name, A->getNamespace());
1089 A->addComposite(B, Comp);
1090 return Comp;
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp1556 uint32_t Comp = Probability.getDenominator() - Probability.getNumerator(); local
1557 unsigned FUnpredCost = Comp * FCycles;
/external/clang/lib/AST/
H A DExpr.cpp3219 StringRef Comp = Accessor->getName(); local
3222 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
3226 if (Comp[0] == 's' || Comp[0] == 'S')
3227 Comp = Comp.substr(1);
3229 for (unsigned i = 0, e = Comp
3239 StringRef Comp = Accessor->getName(); local
[all...]
/external/llvm/lib/Target/Mips/
H A DMipsISelLowering.cpp3095 MipsTargetLowering::LTStr Comp; local
3099 assert(Comp(*I, *(I + 1)));
3102 return std::binary_search(LibCalls, End, CallSym, Comp);
/external/clang/lib/Sema/
H A DTreeTransform.h6510 Component Comp; local
6511 Comp.isBrackets = true;
6512 Comp.LocStart = ON.getSourceRange().getBegin();
6513 Comp.LocEnd = ON.getSourceRange().getEnd();
6522 Comp.isBrackets = true;
6523 Comp.U.E = Index.get();
6529 Comp.isBrackets = false;
6530 Comp.U.IdentInfo = ON.getFieldName();
6531 if (!Comp.U.IdentInfo)
6541 Components.push_back(Comp);
[all...]

Completed in 239 milliseconds