Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DExpandMemCmp.cpp409 auto pairWiseOr = [&](std::vector<Value *> &InList) -> std::vector<Value *> { in getCompareLoadPairs() argument
411 for (unsigned i = 0; i < InList.size() - 1; i = i + 2) { in getCompareLoadPairs()
412 Value *Or = Builder.CreateOr(InList[i], InList[i + 1]); in getCompareLoadPairs()
415 if (InList.size() % 2 != 0) in getCompareLoadPairs()
416 OutList.push_back(InList.back()); in getCompareLoadPairs()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DDeclObjC.h75 void set(void *const* InList, unsigned Elts, ASTContext &Ctx);
85 void set(T* const* InList, unsigned Elts, ASTContext &Ctx) { in set() argument
86 ObjCListBase::set(reinterpret_cast<void*const*>(InList), Elts, Ctx); in set()
115 void set(ObjCProtocolDecl* const* InList, unsigned Elts,
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DDeclObjC.cpp45 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()