/external/swiftshader/third_party/LLVM/lib/Target/X86/ |
X86SelectionDAGInfo.cpp | 58 TargetLowering::ArgListTy Args; 62 Args.push_back(Entry); 64 Args.push_back(Entry); 69 DAG.getExternalSymbol(bzeroEntry, IntPtr), Args,
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
Verifier.h | 44 template <typename... Tys> void CheckFailed(Tys &&... Args);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/AsmPrinter/ |
DwarfFile.h | 57 /// We need to sort Args by ArgNo and check for duplicates. This could also 59 std::map<unsigned, DbgVariable *> Args;
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Option/ |
ArgList.cpp | 35 Args.push_back(A); 42 R.first = std::min<unsigned>(R.first, Args.size() - 1); 43 R.second = Args.size(); 52 Arg **ArgsBegin = Args.data();
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Lanai/ |
LanaiTargetTransformInfo.h | 85 ArrayRef<const Value *> Args = ArrayRef<const Value *>()) {
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Utils/ |
EscapeEnumerator.cpp | 87 SmallVector<Value *, 16> Args;
|
/external/tensorflow/tensorflow/stream_executor/rocm/ |
rocm_rng.cc | 69 template <typename... Args> \ 70 hiprandStatus_t operator()(GpuExecutor* parent, Args... args) { \ 72 return ::__name(args...); \ 98 template <typename... Args> \ 99 hiprandStatus operator()(GpuExecutor* parent, Args... args) { \ 101 return DynLoad()(args...); \
|
/frameworks/av/media/codec2/components/base/include/ |
SimpleC2Interface.h | 187 template<typename T, typename ...Args> 188 std::shared_ptr<T> AllocSharedString(const Args(&... args), const char *str) { 190 std::shared_ptr<T> ret = T::AllocShared(len, args...); 195 template<typename T, typename ...Args> 196 std::shared_ptr<T> AllocSharedString(const Args(&... args), const std::string &str) { 197 std::shared_ptr<T> ret = T::AllocShared(str.length() + 1, args...);
|
/art/compiler/utils/ |
swap_space.h | 199 template <class U, class... Args> 200 void construct(U* p, Args&&... args) { 201 ::new (static_cast<void*>(p)) U(std::forward<Args>(args)...);
|
/art/libartbase/base/ |
arena_containers.h | 206 template <typename U, typename... Args> 207 void construct(U* p, Args&&... args) { 208 ::new (static_cast<void*>(p)) U(std::forward<Args>(args)...);
|
scoped_arena_containers.h | 193 template <typename U, typename... Args> 194 void construct(U* p, Args&&... args) { 196 ::new (static_cast<void*>(p)) U(std::forward<Args>(args)...);
|
/dalvik/dx/src/com/android/dx/command/dump/ |
DotDumper.java | 49 private final Args args; field in class:DotDumper 52 static void dump(byte[] bytes, String filePath, Args args) { 53 new DotDumper(bytes, filePath, args).run(); 56 DotDumper(byte[] bytes, String filePath, Args args) { 59 this.strictParse = args.strictParse; 60 this.optimize = args.optimize; 61 this.args = args [all...] |
/device/linaro/bootloader/edk2/BaseTools/Source/Python/Ecc/MetaFileWorkspace/ |
MetaFileTable.py | 328 Args = (Cursor, MetaFile, FileType, Temporary)
330 Args = (Cursor, MetaFile, FileType, Temporary)
333 return Class._FILE_TABLE_[FileType](*Args)
|
/external/catch2/include/internal/ |
catch_generators.hpp | 38 template<typename T, typename... Args> 39 std::unique_ptr<T> make_unique( Args&&... args ) { 40 return std::unique_ptr<T>(new T(std::forward<Args>(args)...));
|
/external/clang/lib/Analysis/ |
ThreadSafetyTIL.cpp | 60 for (SExpr *E : Args) { 72 for (SExpr *E : Args) { 156 for (auto *Arg : Args)
|
/external/clang/tools/c-index-test/ |
core_main.cpp | 138 static bool printSourceSymbols(ArrayRef<const char *> Args) { 141 ArgsWithProgName.append(Args.begin(), Args.end()); 223 errs() << "error: missing compiler args; pass '-- <compiler arguments>'\n";
|
/external/clang/tools/libclang/ |
Indexing.cpp | 269 SourceRange Range, const MacroArgs *Args) override {} 462 std::unique_ptr<std::vector<const char *>> Args( 467 ArgsCleanup(Args.get()); 469 Args->insert(Args->end(), command_line_args, 478 Args->push_back(source_filename); 481 CInvok(createInvocationFromCommandLine(*Args, Diags)); 845 SmallVector<const char *, 4> Args; 846 Args.push_back("clang"); 847 Args.append(command_line_args, command_line_args + num_command_line_args) [all...] |
/external/deqp-deps/SPIRV-Headers/tools/buildHeaders/ |
jsonToSpirv.h | 134 template <typename... Args> 135 void emplace_back(Args&&... args) { 136 values.emplace_back(std::forward<Args>(args)...);
|
/external/google-fruit/include/fruit/impl/meta/ |
vector.h | 37 // that the arguments have already been evaluated (e.g. if Args... are arguments of a metafunction, 38 // Vector<Args...> is ok but Vector<MyFunction(Args)...> is wrong. 257 template <typename ErrorTag, typename... Args, typename... OtherArgs> 258 struct apply<ErrorTag, Vector<Args...>, OtherArgs...> { 259 using type = ConstructError(ErrorTag, OtherArgs..., Args...);
|
/external/libchrome/base/memory/ |
scoped_refptr.h | 89 template <typename T, typename... Args> 90 scoped_refptr<T> MakeRefCounted(Args&&... args) { 91 T* obj = new T(std::forward<Args>(args)...);
|
/external/libcxx/test/support/ |
allocators.h | 153 template <class U, class ...Args> 154 void construct(U* p, Args&& ...args) 156 ::new (p) U(std::forward<Args>(args)...);
|
/external/llvm/examples/ParallelJIT/ |
ParallelJIT.cpp | 249 std::vector<GenericValue> Args(1); 250 Args[0].IntVal = APInt(32, p->value); 253 GenericValue gv = p->EE->runFunction(p->F, Args);
|
/external/perfetto/include/perfetto/base/ |
circular_queue.h | 195 template <typename... Args> 196 void emplace_back(Args&&... args) { 201 new (slot) T(std::forward<Args>(args)...);
|
/external/shaderc/spirv-headers/tools/buildHeaders/ |
jsonToSpirv.h | 134 template <typename... Args> 135 void emplace_back(Args&&... args) { 136 values.emplace_back(std::forward<Args>(args)...);
|
/external/skia/include/private/ |
SkArenaAlloc.h | 74 template <typename T, typename... Args> 75 T* make(Args&&... args) { 98 return new(objStart) T(std::forward<Args>(args)...);
|