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

/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.cpp400 StringRef Comp = Components[Idx]; local
404 Arch = parseArch(Comp);
408 Vendor = parseVendor(Comp);
412 OS = parseOS(Comp);
416 Environment = parseEnvironment(Comp);
470 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/include/clang/Lex/
H A DPreprocessingRecord.h318 class Comp { class in class:clang::PreprocessingRecord::CondDirectiveLoc
321 explicit Comp(SourceManager &SM) : SM(SM) {} function in class:clang::PreprocessingRecord::CondDirectiveLoc::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.cpp985 APInt Comp = CmpRHSV << ShAmtVal; local
986 ConstantInt *ShiftedCmpRHS = ConstantInt::get(ICI.getContext(), Comp);
988 Comp = Comp.lshr(ShAmtVal);
990 Comp = Comp.ashr(ShAmtVal);
992 if (Comp != CmpRHSV) { // Comparing against a bit that we know is zero.
1281 Constant *Comp = local
1284 if (Comp != RHS) {// Comparing against a bit that we know is zero.
/external/llvm/utils/TableGen/
H A DCodeGenRegisters.cpp1095 CodeGenSubRegIndex *Comp = A->compose(B); local
1096 if (Comp)
1097 return Comp;
1101 Comp = createSubRegIndex(Name, A->getNamespace());
1102 A->addComposite(B, Comp);
1103 return Comp;
/external/llvm/lib/Target/ARM/
H A DARMBaseInstrInfo.cpp1520 uint32_t Comp = Probability.getDenominator() - Probability.getNumerator(); local
1521 unsigned FUnpredCost = Comp * FCycles;
/external/clang/lib/AST/
H A DExpr.cpp3071 StringRef Comp = Accessor->getName(); local
3074 if (Comp == "hi" || Comp == "lo" || Comp == "even" || Comp == "odd")
3078 if (Comp[0] == 's' || Comp[0] == 'S')
3079 Comp = Comp.substr(1);
3081 for (unsigned i = 0, e = Comp
3091 StringRef Comp = Accessor->getName(); local
[all...]
/external/clang/lib/Sema/
H A DTreeTransform.h6217 Component Comp; local
6218 Comp.isBrackets = true;
6219 Comp.LocStart = ON.getSourceRange().getBegin();
6220 Comp.LocEnd = ON.getSourceRange().getEnd();
6229 Comp.isBrackets = true;
6230 Comp.U.E = Index.get();
6236 Comp.isBrackets = false;
6237 Comp.U.IdentInfo = ON.getFieldName();
6238 if (!Comp.U.IdentInfo)
6248 Components.push_back(Comp);
[all...]

Completed in 304 milliseconds