Searched refs:nElts (Results 1 – 4 of 4) sorted by relevance
/external/llvm/utils/TableGen/ |
D | NeonEmitter.cpp | 566 static std::string Duplicate(unsigned nElts, StringRef typestr, in Duplicate() argument 571 for (unsigned i = 0; i != nElts; ++i) { in Duplicate() 573 if ((i + 1) < nElts) in Duplicate() 581 static std::string SplatLane(unsigned nElts, const std::string &vec, in SplatLane() argument 584 for (unsigned i = 0; i < nElts; ++i) in SplatLane() 594 unsigned nElts = 0; in GetNumElements() local 596 case 'c': nElts = 8; break; in GetNumElements() 597 case 's': nElts = 4; break; in GetNumElements() 598 case 'i': nElts = 2; break; in GetNumElements() 599 case 'l': nElts = 1; break; in GetNumElements() [all …]
|
/external/clang/lib/AST/ |
D | DeclObjC.cpp | 855 unsigned nElts, in ObjCClassDecl() argument 858 setClassList(C, Elts, Locs, nElts); in ObjCClassDecl() 875 unsigned nElts) { in Create() argument 876 return new (C) ObjCClassDecl(DC, L, Elts, Locs, nElts, C); in Create() 891 ObjCProtocolDecl *const *Elts, unsigned nElts, in ObjCForwardProtocolDecl() argument 894 ReferencedProtocols.set(Elts, nElts, Locs, C); in ObjCForwardProtocolDecl()
|
/external/clang/include/clang/AST/ |
D | DeclObjC.h | 916 unsigned nElts, ASTContext &C); 921 unsigned nElts = 0); 948 ObjCProtocolDecl *const *Elts, unsigned nElts,
|
/external/clang/lib/CodeGen/ |
D | CGBuiltin.cpp | 1137 unsigned nElts = cast<llvm::VectorType>(V->getType())->getNumElements(); in EmitNeonSplat() local 1138 SmallVector<Constant*, 16> Indices(nElts, C); in EmitNeonSplat()
|