Searched refs:InList (Results 1 – 3 of 3) sorted by relevance
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | ExpandMemCmp.cpp | 412 auto pairWiseOr = [&](std::vector<Value *> &InList) -> std::vector<Value *> { in getCompareLoadPairs() argument 414 for (unsigned i = 0; i < InList.size() - 1; i = i + 2) { in getCompareLoadPairs() 415 Value *Or = Builder.CreateOr(InList[i], InList[i + 1]); in getCompareLoadPairs() 418 if (InList.size() % 2 != 0) in getCompareLoadPairs() 419 OutList.push_back(InList.back()); in getCompareLoadPairs()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | DeclObjC.cpp | 45 void ObjCListBase::set(void *const* InList, unsigned Elts, ASTContext &Ctx) { in set() argument 51 memcpy(List, InList, sizeof(void*)*Elts); in set() 54 void ObjCProtocolList::set(ObjCProtocolDecl* const* InList, unsigned Elts, in set() argument 61 set(InList, Elts, Ctx); in set()
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | DeclObjC.h | 74 void set(void *const* InList, unsigned Elts, ASTContext &Ctx); 84 void set(T* const* InList, unsigned Elts, ASTContext &Ctx) { in set() argument 85 ObjCListBase::set(reinterpret_cast<void*const*>(InList), Elts, Ctx); in set() 114 void set(ObjCProtocolDecl* const* InList, unsigned Elts,
|