Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DExpandMemCmp.cpp453 auto pairWiseOr = [&](std::vector<Value *> &InList) -> std::vector<Value *> { in getCompareLoadPairs() argument
455 for (unsigned i = 0; i < InList.size() - 1; i = i + 2) { in getCompareLoadPairs()
456 Value *Or = Builder.CreateOr(InList[i], InList[i + 1]); in getCompareLoadPairs()
459 if (InList.size() % 2 != 0) in getCompareLoadPairs()
460 OutList.push_back(InList.back()); in getCompareLoadPairs()
/freebsd/contrib/llvm-project/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()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DDeclObjC.h74 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,