/external/clang/test/CXX/temp/temp.fct.spec/temp.arg.explicit/ |
D | p9-0x.cpp | 24 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/ |
D | p1-0x.cpp | 30 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/ |
D | strace_profiler.py | 101 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/ |
D | bytecode-array-builder.cc | 569 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 …]
|
D | interpreter-assembler.h | 96 compiler::Node* first_arg, compiler::Node* arg_count, 107 compiler::Node* first_arg, 114 compiler::Node* first_arg,
|
D | bytecode-array-builder.h | 170 BytecodeArrayBuilder& New(Register constructor, Register first_arg, 177 Register first_arg, size_t arg_count); 184 Register first_arg, size_t arg_count,
|
D | interpreter-assembler.cc | 442 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()
|
D | interpreter.cc | 1020 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()
|
D | bytecode-generator.cc | 2403 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/ |
D | trie-c.cc | 11 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/ |
D | trie-c.cc | 11 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/ |
D | interpreter-assembler-unittest.cc | 648 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/ |
D | bytecode-graph-builder.h | 108 interpreter::Register first_arg, size_t arity); 110 interpreter::Register first_arg,
|
D | bytecode-graph-builder.cc | 991 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/ |
D | CommandInterpreter.cpp | 1957 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/ |
D | Process.cpp | 396 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/ |
D | cxa_demangle.cpp | 4540 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/ |
D | objects.h | 2243 uint32_t first_arg,
|
D | objects.cc | 15018 uint32_t first_arg, in EnsureCanContainElements() argument 15025 object, args->arguments() - first_arg - (arg_count - 1), arg_count, mode); in EnsureCanContainElements()
|
/external/valgrind/perf/ |
D | tinycc.c | 8153 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()
|