Searched refs:ArgsTy (Results 1 – 8 of 8) sorted by relevance
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | Module.h | 351 template<typename... ArgsTy> 354 Type *RetTy, ArgsTy... Args) in getOrInsertFunction() 356 SmallVector<Type*, sizeof...(ArgsTy)> ArgTys{Args...}; in getOrInsertFunction() 363 template<typename... ArgsTy> 364 Constant *getOrInsertFunction(StringRef Name, Type *RetTy, ArgsTy... Args) { in getOrInsertFunction()
|
D | Instructions.h | 1373 template <class... ArgsTy> 1374 CallBase(AttributeList const &A, FunctionType *FT, ArgsTy &&... Args) 1375 : BaseInstTy(std::forward<ArgsTy>(Args)...), Attrs(A), FTy(FT) {}
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/ADT/ |
D | StringMap.h | 376 template <typename... ArgsTy> 377 std::pair<iterator, bool> try_emplace(StringRef Key, ArgsTy &&... Args) { in try_emplace() 386 Bucket = MapEntryTy::Create(Key, Allocator, std::forward<ArgsTy>(Args)...); in try_emplace()
|
/external/llvm/include/llvm/ADT/ |
D | StringMap.h | 372 template <typename... ArgsTy> 373 std::pair<iterator, bool> emplace_second(StringRef Key, ArgsTy &&... Args) { in emplace_second() 382 Bucket = MapEntryTy::Create(Key, Allocator, std::forward<ArgsTy>(Args)...); in emplace_second()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/ADT/ |
D | StringMap.h | 394 template <typename... ArgsTy> 395 std::pair<iterator, bool> try_emplace(StringRef Key, ArgsTy &&... Args) { in try_emplace() 404 Bucket = MapEntryTy::Create(Key, Allocator, std::forward<ArgsTy>(Args)...); in try_emplace()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | LoopInfo.h | 648 template <typename... ArgsTy> LoopT *AllocateLoop(ArgsTy &&... Args) { in AllocateLoop() 650 return new (Storage) LoopT(std::forward<ArgsTy>(Args)...); in AllocateLoop()
|
/external/llvm/tools/llvm-stress/ |
D | llvm-stress.cpp | 124 Type* ArgsTy[] = { in GenEmptyFunction() local 133 auto *FuncTy = FunctionType::get(Type::getVoidTy(Context), ArgsTy, false); in GenEmptyFunction()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-stress/ |
D | llvm-stress.cpp | 158 Type* ArgsTy[] = { in GenEmptyFunction() local 167 auto *FuncTy = FunctionType::get(Type::getVoidTy(Context), ArgsTy, false); in GenEmptyFunction()
|