/external/swiftshader/third_party/llvm-7.0/llvm/test/MC/AMDGPU/ |
hsa-metadata-kernel-args.s | 15 // CHECK: Args: 48 Args:
|
hsa-metadata-unknown-key.s | 18 Args:
|
/external/syzkaller/sys/netbsd/ |
init.go | 28 c.Args[3].(*prog.ConstArg).Val |= arch.MAP_FIXED 32 code := c.Args[0].(*prog.ConstArg)
|
/external/tensorflow/tensorflow/stream_executor/rocm/ |
rocm_driver_wrapper.h | 39 template <typename... Args> \ 40 auto hipSymbolName(Args... args)->decltype(::hipSymbolName(args...)) { \ 41 return ::hipSymbolName(args...); \ 54 template <typename... Args> \ 55 auto hipSymbolName(Args... args)->decltype(::hipSymbolName(args...)) { \ 68 return loaded(args...); [all...] |
/external/clang/unittests/Tooling/ |
TestVisitor.h | 53 std::vector<std::string> Args; 55 case Lang_C: Args.push_back("-std=c99"); break; 56 case Lang_CXX98: Args.push_back("-std=c++98"); break; 57 case Lang_CXX11: Args.push_back("-std=c++11"); break; 58 case Lang_OBJC: Args.push_back("-ObjC"); break; 60 Args.push_back("-ObjC++"); 61 Args.push_back("-std=c++11"); 62 Args.push_back("-fblocks"); 65 return tooling::runToolOnCodeWithArgs(CreateTestAction(), Code, Args);
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.apply/ |
make_from_tuple.pass.cpp | 31 template <class ...Args> 32 explicit constexpr ConstexprConstructibleFromTuple(Args&&... xargs) 33 : args{std::forward<Args>(xargs)...} {} 34 Tuple args; member in struct:ConstexprConstructibleFromTuple 42 template <class ...Args> 43 explicit ConstructibleFromTuple(Args&&... xargs) 44 : args(xargs...), 45 arg_types(&makeArgumentID<Args&&...>()) 47 Tuple<std::decay_t<Types>...> args; member in struct:ConstructibleFromTuple 58 std::array<Tp, N> args; member in struct:ConstructibleFromTuple [all...] |
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/ |
rpc_rendezvous_mgr.cc | 47 const Rendezvous::Args& args, 63 const Rendezvous::Args& recv_args, Rendezvous::DoneCallback done) { 130 const Rendezvous::Args& recv_args() const { return recv_args_; } 162 Rendezvous::Args recv_args_; 217 const Rendezvous::ParsedKey& parsed, const Rendezvous::Args& recv_args, 249 done(s, Args(), recv_args, Tensor{}, false); 265 call->done()(call->status(), Args(), Args(), Tensor(), false); 282 call->done()(s, Args(), call->recv_args(), call->tensor(), call->is_dead()) [all...] |
/frameworks/av/media/codec2/core/include/ |
C2ParamDef.h | 226 * - P::AllocXyz(flexCount, args...): allocate for given flex-count. This maps to 227 * T(flexCount, args...)\ 229 * Clang does not support args... followed by templated param as args... eats it. Hence, 233 * - P::AllocXyz(T[], args...): allocate for size of (and with) init array. 234 * - P::AllocXyz(std::initializer_list<T>, args...): allocate for size of (and with) initializer 236 * - P::AllocXyz(std::vector<T>, args...): allocate for size of (and with) init vector. 237 * These specializations map to T(flexCount = size-of-init, args..., init) 240 template<typename ...Args> \ 241 inline static std::ptr##_ptr<_Type> Alloc##Ptr(size_t flexCount, const Args(&... args)) { [all...] |
/external/libchrome/base/ |
optional.h | 46 template <class... Args> 47 constexpr explicit OptionalStorageBase(in_place_t, Args&&... args) 48 : is_populated_(true), value_(std::forward<Args>(args)...) {} 66 template <class... Args> 67 void Init(Args&&... args) { 69 ::new (&value_) T(std::forward<Args>(args)...) [all...] |
/external/perfetto/include/perfetto/base/ |
optional.h | 59 template <class... Args> 60 constexpr explicit OptionalStorageBase(in_place_t, Args&&... args) 61 : is_populated_(true), value_(std::forward<Args>(args)...) {} 79 template <class... Args> 80 void Init(Args&&... args) { 82 ::new (&value_) T(std::forward<Args>(args)...) [all...] |
/external/clang/lib/Driver/ |
Tools.h | 42 const llvm::opt::ArgList &Args, 48 static const char *getBaseInputName(const llvm::opt::ArgList &Args, 50 static const char *getBaseInputStem(const llvm::opt::ArgList &Args, 52 static const char *getDependencyFileName(const llvm::opt::ArgList &Args, 57 const Driver &D, const llvm::opt::ArgList &Args, 63 void AddAArch64TargetArgs(const llvm::opt::ArgList &Args, 66 const llvm::opt::ArgList &Args, 69 void AddARM64TargetArgs(const llvm::opt::ArgList &Args, 71 void AddMIPSTargetArgs(const llvm::opt::ArgList &Args, 73 void AddPPCTargetArgs(const llvm::opt::ArgList &Args, [all...] |
/external/libcxx/test/support/ |
container_test_types.h | 26 // 2. Provide a mechanism of checking calls to 'a.construct(Args...)'. 37 // 1. Allow calls to 'a.construct(p, args...)' to be checked by a test. 38 // The test uses 'cc->expect<Args...>()' to specify that the allocator 52 * Usage: The following example checks that 'unordered_map::emplace(Args&&...)' 53 * with 'Args = [CopyInsertable<1> const&, CopyInsertible<2>&&]' 54 * calls 'alloc.construct(value_type*, Args&&...)' with the same types. 139 template <class ...Args> 144 template <class ...Args> 146 return makeTypeID<ArgumentListID<Args...>>(); 185 // Expect a call to Allocator::construct with Args that match 'tid' [all...] |
nasty_containers.hpp | 92 template <class... Args> 93 void emplace_back(Args&&... args) { v_.emplace_back(std::forward<Args>(args)...); } 98 template <class... Args> iterator emplace(const_iterator pos, Args&&... args) 99 { return v_.emplace(pos, std::forward<Args>(args)...); [all...] |
/external/pdfium/third_party/base/ |
optional.h | 48 template <class... Args> 49 explicit OptionalStorage(in_place_t, Args&&... args) 50 : is_null_(false), value_(std::forward<Args>(args)...) {} 83 template <class... Args> 84 explicit OptionalStorage(in_place_t, Args&&... args) 85 : is_null_(false), value_(std::forward<Args>(args)...) { [all...] |
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter4/ |
toy.cpp | 126 std::vector<ExprAST*> Args; 128 CallExprAST(const std::string &callee, std::vector<ExprAST*> &args) 129 : Callee(callee), Args(args) {} 138 std::vector<std::string> Args; 140 PrototypeAST(const std::string &name, const std::vector<std::string> &args) 141 : Name(name), Args(args) {} 204 std::vector<ExprAST*> Args; 209 Args.push_back(Arg) [all...] |
/external/v8/src/base/ |
optional.h | 53 template <class... Args> 54 explicit OptionalStorage(base::in_place_t, Args&&... args) 55 : is_null_(false), value_(std::forward<Args>(args)...) {} 87 template <class... Args> 88 explicit OptionalStorage(base::in_place_t, Args&&... args) 89 : is_null_(false), value_(std::forward<Args>(args)...) { [all...] |
/external/clang/unittests/AST/ |
MatchVerifier.h | 47 std::vector<std::string> Args; 48 return match(Code, AMatcher, Args, Lang_CXX); 55 std::vector<std::string> Args; 56 return match(Code, AMatcher, Args, L); 62 std::vector<std::string>& Args, 92 std::vector<std::string>& Args, Language L) { 101 Args.push_back("-std=c99"); 105 Args.push_back("-std=c89"); 109 Args.push_back("-std=c++98"); 113 Args.push_back("-std=c++11") [all...] |
/external/tensorflow/tensorflow/core/framework/ |
rendezvous.cc | 117 Status Rendezvous::Recv(const ParsedKey& key, const Args& recv_args, 122 [&ret, &n, val, is_dead](const Status& s, const Args& send_args, 123 const Args& recv_args, const Tensor& v, 143 Status Rendezvous::Recv(const ParsedKey& key, const Args& args, Tensor* val, 146 return Recv(key, args, val, is_dead, no_timeout); 153 Status Send(const ParsedKey& key, const Args& send_args, const Tensor& val, 196 void RecvAsync(const ParsedKey& key, const Args& recv_args, 206 done(s, Args(), recv_args, Tensor(), false); 249 item->waiter(status, Args(), Args(), Tensor(), false) [all...] |
/external/syzkaller/sys/windows/gen/ |
amd64.go | 32 {Name: "AbortDoc", CallName: "AbortDoc", Args: []Type{ 35 {Name: "AbortPath", CallName: "AbortPath", Args: []Type{ 38 {Name: "AbortPrinter", CallName: "AbortPrinter", Args: []Type{ 41 {Name: "AbortSystemShutdownA", CallName: "AbortSystemShutdownA", Args: []Type{ 44 {Name: "AcceptEx", CallName: "AcceptEx", Args: []Type{ 54 {Name: "AccessCheck", CallName: "AccessCheck", Args: []Type{ 64 {Name: "AccessCheckAndAuditAlarmA", CallName: "AccessCheckAndAuditAlarmA", Args: []Type{ 75 {Name: "AccessCheckByType", CallName: "AccessCheckByType", Args: []Type{ 86 {Name: "AccessCheckByTypeAndAuditAlarmA", CallName: "AccessCheckByTypeAndAuditAlarmA", Args: []Type{ 97 {Name: "AccessCheckByTypeResultList", CallName: "AccessCheckByTypeResultList", Args: []Type [all...] |
/dalvik/dx/src/com/android/dx/command/dump/ |
ClassDumper.java | 37 * @param args bag of commandline arguments 40 String filePath, Args args) { 42 new ClassDumper(bytes, out, filePath, args); 51 String filePath, Args args) { 52 super(bytes, out, filePath, args);
|
/device/linaro/bootloader/edk2/BaseTools/Source/C/PyUtility/ |
PyUtility.c | 26 PyObject *Args
38 Args,
|
/external/clang/include/clang/ASTMatchers/Dynamic/ |
Registry.h | 100 /// \param Args The argument list for the matcher. The number and types of the 110 ArrayRef<ParserValue> Args, 122 ArrayRef<ParserValue> Args,
|
/external/clang/include/clang/Driver/ |
SanitizerArgs.h | 44 SanitizerArgs(const ToolChain &TC, const llvm::opt::ArgList &Args); 69 void addArgs(const ToolChain &TC, const llvm::opt::ArgList &Args,
|
/external/clang/lib/ASTMatchers/Dynamic/ |
Marshallers.h | 129 ArrayRef<ParserValue> Args, 187 ArrayRef<ParserValue> Args, 205 ArrayRef<ParserValue> Args, 207 return Marshaller(Func, MatcherName, NameRange, Args, Error); 304 ArrayRef<ParserValue> Args, Diagnostics *Error) { 305 ArgT **InnerArgs = new ArgT *[Args.size()](); 308 for (size_t i = 0, e = Args.size(); i != e; ++i) { 310 const ParserValue &Arg = Args[i]; 324 Args.size()))); 327 for (size_t i = 0, e = Args.size(); i != e; ++i) [all...] |
/external/google-fruit/include/fruit/ |
component.h | 79 template <typename Component, typename... Args> 84 template <typename Component, typename... Args> 191 * std::function<std::unique_ptr<I>(Args...)> to a std::function<std::unique_ptr<C>(Args...)> or a 192 * std::function<C(Args...)>. For example: 525 * std::function<std::unique_ptr<I>(Args...)> to a std::function<std::unique_ptr<C>(Args...)> or a 526 * std::function<C(Args...)>. [all...] |