Home
last modified time | relevance | path

Searched refs:first_arg (Results 1 – 20 of 20) 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.py101 first_arg = function_args.split(',')[0]
102 if first_arg and first_arg.strip().isdigit():
103 possible_fd_arg = first_arg.strip()
107 fd_map[ret] = first_arg
116 args['fd%s' % first_arg] = fd_map[possible_fd_arg]
/external/v8/src/interpreter/
Dbytecode-array-builder.cc569 Register first_arg, in New() argument
571 if (!first_arg.is_valid()) { in New()
573 first_arg = Register(0); in New()
576 RegisterOperand(first_arg), UnsignedOperand(arg_count)); in New()
581 Runtime::FunctionId function_id, Register first_arg, size_t arg_count) { in CallRuntime() argument
584 if (!first_arg.is_valid()) { in CallRuntime()
586 first_arg = Register(0); in CallRuntime()
597 Output(bytecode, id, RegisterOperand(first_arg), UnsignedOperand(arg_count)); in CallRuntime()
602 Runtime::FunctionId function_id, Register first_arg, size_t arg_count, in CallRuntimeForPair() argument
606 if (!first_arg.is_valid()) { in CallRuntimeForPair()
[all …]
Dinterpreter-assembler.h96 compiler::Node* first_arg, compiler::Node* arg_count,
107 compiler::Node* first_arg,
114 compiler::Node* first_arg,
Dbytecode-array-builder.h170 BytecodeArrayBuilder& New(Register constructor, Register first_arg,
177 Register first_arg, size_t arg_count);
184 Register first_arg, size_t arg_count,
Dinterpreter-assembler.cc442 Node* first_arg, Node* arg_count, in CallJS() argument
448 first_arg, function); in CallJS()
452 Node* new_target, Node* first_arg, in CallConstruct() argument
457 new_target, constructor, first_arg); in CallConstruct()
461 Node* first_arg, Node* arg_count, in CallRuntimeN() argument
477 first_arg, function_entry, result_size); in CallRuntimeN()
Dinterpreter.cc1020 Node* first_arg = __ RegisterLocation(first_arg_reg); in DoCallRuntimeCommon() local
1023 Node* result = __ CallRuntimeN(function_id, context, first_arg, args_count); in DoCallRuntimeCommon()
1058 Node* first_arg = __ RegisterLocation(first_arg_reg); in DoCallRuntimeForPairCommon() local
1062 __ CallRuntimeN(function_id, context, first_arg, args_count, 2); in DoCallRuntimeForPairCommon()
1087 Node* first_arg = __ RegisterLocation(receiver_reg); in DoCallJSRuntimeCommon() local
1099 Node* result = __ CallJS(function, context, first_arg, args_count, in DoCallJSRuntimeCommon()
1119 Node* first_arg = __ RegisterLocation(first_arg_reg); in DoCallConstruct() local
1123 __ CallConstruct(constructor, context, new_target, first_arg, args_count); in DoCallConstruct()
Dbytecode-generator.cc2403 Register first_arg = register_allocator()->NextConsecutiveRegister(); in VisitArguments() local
2405 builder()->StoreAccumulatorInRegister(first_arg); in VisitArguments()
2412 DCHECK(ith_arg.index() - i == first_arg.index()); in VisitArguments()
2414 return first_arg; in VisitArguments()
2560 Register first_arg = VisitArguments(args); in VisitCallSuper() local
2568 builder()->New(constructor, first_arg, args->length()); in VisitCallSuper()
2578 Register first_arg = VisitArguments(args); in VisitCallNew() local
2585 .New(constructor, first_arg, args->length()); in VisitCallNew()
2596 Register first_arg = VisitArguments(args); in VisitCallRuntime() local
2597 CHECK(args->length() == 0 || first_arg.index() == receiver.index() + 1); in VisitCallRuntime()
[all …]
/external/marisa-trie/lib/marisa/
Dtrie-c.cc11 FindCallback(Func func, void *first_arg) in FindCallback() argument
12 : func_(func), first_arg_(first_arg) {} in FindCallback()
32 PredictCallback(Func func, void *first_arg) in PredictCallback() argument
33 : func_(func), first_arg_(first_arg) {} in PredictCallback()
/external/marisa-trie/v0_1_5/lib/marisa_alpha/
Dtrie-c.cc11 FindCallback(Func func, void *first_arg) in FindCallback() argument
12 : func_(func), first_arg_(first_arg) {} in FindCallback()
32 PredictCallback(Func func, void *first_arg) in PredictCallback() argument
33 : func_(func), first_arg_(first_arg) {} in PredictCallback()
/external/v8/test/unittests/interpreter/
Dinterpreter-assembler-unittest.cc648 Node* first_arg = m.Int32Constant(1); in TARGET_TEST_F() local
661 Node* call_runtime = m.CallRuntimeN(function_id, context, first_arg, in TARGET_TEST_F()
665 first_arg, function_entry, context, _, _)); in TARGET_TEST_F()
679 Node* first_arg = m.Int32Constant(1); in TARGET_TEST_F() local
683 m.CallJS(function, context, first_arg, arg_count, tail_call_mode); in TARGET_TEST_F()
685 first_arg, function, context, _, _)); in TARGET_TEST_F()
/external/v8/src/compiler/
Dbytecode-graph-builder.h108 interpreter::Register first_arg, size_t arity);
110 interpreter::Register first_arg,
Dbytecode-graph-builder.cc991 const Operator* call_runtime_op, interpreter::Register first_arg, in ProcessCallRuntimeArguments() argument
994 int first_arg_index = first_arg.index(); in ProcessCallRuntimeArguments()
1006 interpreter::Register first_arg = bytecode_iterator().GetRegisterOperand(1); in VisitCallRuntime() local
1011 Node* value = ProcessCallRuntimeArguments(call, first_arg, arg_count); in VisitCallRuntime()
1018 interpreter::Register first_arg = bytecode_iterator().GetRegisterOperand(1); in VisitCallRuntimeForPair() local
1025 Node* return_pair = ProcessCallRuntimeArguments(call, first_arg, arg_count); in VisitCallRuntimeForPair()
1032 interpreter::Register first_arg = bytecode_iterator().GetRegisterOperand(1); in VisitInvokeIntrinsic() local
1038 Node* value = ProcessCallRuntimeArguments(call, first_arg, arg_count); in VisitInvokeIntrinsic()
1044 interpreter::Register first_arg, size_t arity) { in ProcessCallNewArguments() argument
1047 int first_arg_index = first_arg.index(); in ProcessCallNewArguments()
[all …]
/external/lldb/source/Interpreter/
DCommandInterpreter.cpp1957 const char *first_arg = parsed_line.GetArgumentAtIndex(0); in HandleCompletion() local
1958 if (first_arg) in HandleCompletion()
1960 if (first_arg[0] == m_comment_char) in HandleCompletion()
1962 else if (first_arg[0] == CommandHistory::g_repeat_char) in HandleCompletion()
1964 const char *history_string = m_command_history.FindString (first_arg); in HandleCompletion()
/external/lldb/source/Target/
DProcess.cpp396 const char *first_arg = m_arguments.GetArgumentAtIndex (0); in SetArguments() local
397 if (first_arg) in SetArguments()
403 m_executable.SetFile(first_arg, resolve); in SetArguments()
416 const char *first_arg = m_arguments.GetArgumentAtIndex (0); in SetArguments() local
417 if (first_arg) in SetArguments()
423 m_executable.SetFile(first_arg, resolve); in SetArguments()
/external/libcxxabi/src/
Dcxa_demangle.cpp4540 bool first_arg = true; in parse_encoding() local
4563 if (!first_arg) in parse_encoding()
4566 first_arg = false; in parse_encoding()
/external/v8/src/
Dobjects.h2243 uint32_t first_arg,
Dobjects.cc15018 uint32_t first_arg, in EnsureCanContainElements() argument
15025 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()