Home
last modified time | relevance | path

Searched refs:first_arg (Results 1 – 12 of 12) 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/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/chromium-trace/catapult/telemetry/telemetry/internal/platform/profiler/
Dstrace_profiler.py102 first_arg = function_args.split(',')[0]
103 if first_arg and first_arg.strip().isdigit():
104 possible_fd_arg = first_arg.strip()
108 fd_map[ret] = first_arg
117 args['fd%s' % first_arg] = fd_map[possible_fd_arg]
/external/v8/src/interpreter/
Dinterpreter-assembler.h110 compiler::Node* first_arg,
120 compiler::Node* first_arg, compiler::Node* arg_count,
131 compiler::Node* first_arg,
140 compiler::Node* first_arg,
Dinterpreter-assembler.cc529 Node* first_arg, Node* arg_count, in CallJSWithFeedback() argument
573 arg_count, first_arg, function); in CallJSWithFeedback()
611 arg_count, function, feedback_element, first_arg); in CallJSWithFeedback()
692 context, arg_count, first_arg, function); in CallJSWithFeedback()
702 Node* first_arg, Node* arg_count, in CallJS() argument
708 first_arg, function); in CallJS()
712 Node* new_target, Node* first_arg, in CallConstruct() argument
751 allocation_feedback.value(), first_arg)); in CallConstruct()
856 UndefinedConstant(), first_arg)); in CallConstruct()
865 Node* first_arg, Node* arg_count, in CallRuntimeN() argument
[all …]
Dinterpreter.cc1684 Node* first_arg = __ RegisterLocation(first_arg_reg); in DoCallRuntime() local
1687 Node* result = __ CallRuntimeN(function_id, context, first_arg, args_count); in DoCallRuntime()
1719 Node* first_arg = __ RegisterLocation(first_arg_reg); in DoCallRuntimeForPair() local
1723 __ CallRuntimeN(function_id, context, first_arg, args_count, 2); in DoCallRuntimeForPair()
1742 Node* first_arg = __ RegisterLocation(receiver_reg); in DoCallJSRuntime() local
1753 Node* result = __ CallJS(function, context, first_arg, args_count, in DoCallJSRuntime()
1771 Node* first_arg = __ RegisterLocation(first_arg_reg); in DoNew() local
1776 Node* result = __ CallConstruct(constructor, context, new_target, first_arg, in DoNew()
/external/v8/src/compiler/
Dbytecode-graph-builder.cc1304 const Operator* call_runtime_op, interpreter::Register first_arg, in ProcessCallRuntimeArguments() argument
1307 int first_arg_index = first_arg.index(); in ProcessCallRuntimeArguments()
1319 interpreter::Register first_arg = bytecode_iterator().GetRegisterOperand(1); in VisitCallRuntime() local
1324 Node* value = ProcessCallRuntimeArguments(call, first_arg, arg_count); in VisitCallRuntime()
1331 interpreter::Register first_arg = bytecode_iterator().GetRegisterOperand(1); in VisitCallRuntimeForPair() local
1338 Node* return_pair = ProcessCallRuntimeArguments(call, first_arg, arg_count); in VisitCallRuntimeForPair()
1346 interpreter::Register first_arg = bytecode_iterator().GetRegisterOperand(1); in VisitInvokeIntrinsic() local
1352 Node* value = ProcessCallRuntimeArguments(call, first_arg, arg_count); in VisitInvokeIntrinsic()
1358 interpreter::Register first_arg, size_t arity) { in ProcessCallNewArguments() argument
1361 int first_arg_index = first_arg.index(); in ProcessCallNewArguments()
[all …]
Dbytecode-graph-builder.h119 interpreter::Register first_arg, size_t arity);
121 interpreter::Register first_arg,
/external/libcxxabi/src/
Dcxa_demangle.cpp4594 bool first_arg = true; in parse_encoding() local
4620 if (!first_arg) in parse_encoding()
4623 first_arg = false; in parse_encoding()
/external/v8/src/
Dobjects.h2422 uint32_t first_arg,
Dobjects.cc15663 uint32_t first_arg, in EnsureCanContainElements() argument
15670 object, args->arguments() - first_arg - (arg_count - 1), arg_count, mode); in EnsureCanContainElements()
/external/valgrind/perf/
Dtinycc.c8153 static inline void define_push(int v, int macro_type, int *str, Sym *first_arg) in define_push() argument
8158 s->next = first_arg; in define_push()