Home
last modified time | relevance | path

Searched refs:first_arg (Results 1 – 17 of 17) sorted by relevance

/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/
Dp9-0x.cpp24 typename get_nth_type<0, Args...>::type first_arg(Args...);
31 int *ip1 = first_arg<int *>(0); in test_explicit_spec_simple()
32 int *ip2 = first_arg<int *, float*>(0, 0); in test_explicit_spec_simple()
33 float *fp1 = first_arg<float *, double*, int*>(0, 0, 0); in test_explicit_spec_simple()
40 int *ip1 = first_arg<int *>(0, 0); in test_explicit_spec_extension()
41 int *ip2 = first_arg<int *, float*>(0, 0, 0, 0); in test_explicit_spec_extension()
42 float *fp1 = first_arg<float *, double*, int*>(0, 0, 0); in test_explicit_spec_extension()
44 double *dp1 = first_arg<>(dp); in test_explicit_spec_extension()
/external/perfetto/src/profiling/memory/
Dproc_utils.cc61 char* first_arg = static_cast<char*>(memchr(cmdline, '\0', size)); in NormalizeCmdLine() local
62 if (first_arg == nullptr) { in NormalizeCmdLine()
70 if (first_at != nullptr && first_at < first_arg) { in NormalizeCmdLine()
72 first_arg = first_at; in NormalizeCmdLine()
75 memrchr(cmdline, '/', static_cast<size_t>(first_arg - cmdline))); in NormalizeCmdLine()
76 if (start == first_arg) { in NormalizeCmdLine()
87 size_t name_size = static_cast<size_t>(first_arg - start); in NormalizeCmdLine()
/external/clang/test/CXX/temp/temp.fct.spec/temp.deduct/temp.deduct.call/
Dp1-0x.cpp30 typename get_nth_type<0, Args...>::type first_arg(Args...);
36 int *ip1 = first_arg(ip); in test_simple_deduction()
37 int *ip2 = first_arg(ip, fp); in test_simple_deduction()
38 int *ip3 = first_arg(ip, fp, dp); in test_simple_deduction()
39 no_type nt1 = first_arg(); in test_simple_deduction()
/external/libchrome/base/task_scheduler/
Dtask_traits_details.h59 const FirstArgType& first_arg,
64 return getter.GetValueFromArg(first_arg);
/external/u-boot/scripts/
Dkernel-doc1898 my @first_arg;
1901 push(@first_arg, split('\s+', $1));
1902 push(@first_arg, $2);
1904 @first_arg = split('\s+', shift @args);
1907 unshift(@args, pop @first_arg);
1908 $type = join " ", @first_arg;
/external/v8/src/builtins/
Dbuiltins-arguments-gen.h51 Node* arg_count, Node* first_arg,
Dbuiltins-arguments-gen.cc131 Node* map, Node* frame_ptr, Node* arg_count, Node* first_arg, in ConstructParametersObjectFromArgs() argument
152 first_arg, nullptr, param_mode); in ConstructParametersObjectFromArgs()
/external/v8/src/compiler/
Dbytecode-graph-builder.h134 interpreter::Register first_arg,
144 Node* target, Node* new_target, interpreter::Register first_arg,
Dbytecode-graph-builder.cc1667 Node* callee, Node* receiver, interpreter::Register first_arg, in GetCallArgumentsFromRegisters() argument
1679 int arg_base = first_arg.index(); in GetCallArgumentsFromRegisters()
1701 interpreter::Register first_arg = interpreter::Register(receiver.index() + 1); in ProcessCallArguments() local
1705 first_arg, arg_count); in ProcessCallArguments()
1742 interpreter::Register first_arg; in ProcessCallVarArgs() local
1748 first_arg = first_reg; in ProcessCallVarArgs()
1753 first_arg = interpreter::Register(first_reg.index() + 1); in ProcessCallVarArgs()
1757 first_arg, arg_count); in ProcessCallVarArgs()
1867 interpreter::Register first_arg = interpreter::Register(receiver.index() + 1); in VisitCallWithSpread() local
1870 first_arg, arg_count); in VisitCallWithSpread()
[all …]
/external/tensorflow/tensorflow/compiler/xla/service/
Dpattern_matcher.h2227 inline auto WithOperands(Matcher&& m, int64 operand_num, FirstArg&& first_arg)
2228 -> decltype(m.WithOperand(operand_num, std::forward<FirstArg>(first_arg))) {
2229 return m.WithOperand(operand_num, std::forward<FirstArg>(first_arg));
2233 inline auto WithOperands(Matcher&& m, int64 operand_num, FirstArg&& first_arg,
2236 std::forward<FirstArg>(first_arg)),
2239 m.WithOperand(operand_num, std::forward<FirstArg>(first_arg)),
/external/v8/src/wasm/
Dwasm-js.cc774 i::Handle<i::Object> first_arg = Utils::OpenHandle(*first_arg_value); in WebAssemblyInstantiate() local
775 if (!first_arg->IsJSObject()) { in WebAssemblyInstantiate()
792 if (first_arg->IsWasmModuleObject()) { in WebAssemblyInstantiate()
794 i::Handle<i::WasmModuleObject>::cast(first_arg); in WebAssemblyInstantiate()
/external/tensorflow/tensorflow/tools/docs/
Dparser.py741 first_arg = 1 if 'self' in argspec.args[:1] else 0
744 for arg in argspec.args[first_arg:first_arg_with_default]:
/external/swiftshader/third_party/llvm-subzero/lib/Demangle/
DItaniumDemangle.cpp4042 bool first_arg = true; in parse_encoding() local
4064 if (!first_arg) in parse_encoding()
4067 first_arg = false; in parse_encoding()
/external/deqp/external/openglcts/modules/gl/
Dgl4cGPUShaderFP64Tests.cpp13215 const ArgT first_arg = p_arg[component * component_step_0]; in call() local
13218 p_result[component] = p_function(first_arg, second_arg); in call()
13365 const Arg1T first_arg = p_arg_1[component * component_step_0]; in call() local
13368 p_result[component] = p_function(first_arg, second_arg); in call()
13498 const glw::GLdouble first_arg = p_arg[component * component_step_0]; in call() local
13502 p_result[component] = p_function(first_arg, second_arg, third_arg); in call()
/external/v8/src/interpreter/
Dbytecode-generator.cc3661 Register first_arg = args[reciever_arg_count]; in VisitCall() local
3665 .MoveRegister(first_arg, runtime_call_args[1]) in VisitCall()
/external/v8/src/
Dobjects.h2472 uint32_t first_arg,
Dobjects.cc15629 uint32_t first_arg, in EnsureCanContainElements() argument
15636 object, args->arguments() - first_arg - (arg_count - 1), arg_count, mode); in EnsureCanContainElements()