Home
last modified time | relevance | path

Searched refs:NumComps (Results 1 – 3 of 3) sorted by relevance

/NextBSD/contrib/llvm/tools/clang/include/clang/AST/
HDExpr.h1887 unsigned NumComps; variable
1898 TSInfo(nullptr), NumComps(numComps), NumExprs(numExprs) {} in OffsetOfExpr()
1908 unsigned NumComps, unsigned NumExprs);
1926 assert(Idx < NumComps && "Subscript out of range"); in getComponent()
1931 assert(Idx < NumComps && "Subscript out of range"); in setComponent()
1936 return NumComps; in getNumComponents()
1942 reinterpret_cast<OffsetOfNode *>(this+1) + NumComps)[Idx]; in getIndexExpr()
1949 assert(Idx < NumComps && "Subscript out of range"); in setIndexExpr()
1951 reinterpret_cast<OffsetOfNode *>(this+1) + NumComps)[Idx] = E; in setIndexExpr()
1969 + NumComps); in children()
/NextBSD/contrib/llvm/lib/CodeGen/
HDRegisterCoalescer.cpp231 unsigned NumComps = ConEQ.Classify(LI); in splitNewRanges() local
232 if (NumComps <= 1) in splitNewRanges()
235 for (unsigned i = 1; i != NumComps; ++i) { in splitNewRanges()
/NextBSD/contrib/llvm/tools/clang/lib/AST/
HDExpr.cpp1317 NumComps(comps.size()), NumExprs(exprs.size()) in OffsetOfExpr()