/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/perfetto/src/profiling/memory/ |
D | proc_utils.cc | 61 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/ |
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/libchrome/base/task_scheduler/ |
D | task_traits_details.h | 59 const FirstArgType& first_arg, 64 return getter.GetValueFromArg(first_arg);
|
/external/u-boot/scripts/ |
D | kernel-doc | 1898 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/ |
D | builtins-arguments-gen.h | 51 Node* arg_count, Node* first_arg,
|
D | builtins-arguments-gen.cc | 131 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/ |
D | bytecode-graph-builder.h | 134 interpreter::Register first_arg, 144 Node* target, Node* new_target, interpreter::Register first_arg,
|
D | bytecode-graph-builder.cc | 1667 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/ |
D | pattern_matcher.h | 2227 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/ |
D | wasm-js.cc | 774 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/ |
D | parser.py | 741 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/ |
D | ItaniumDemangle.cpp | 4042 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/ |
D | gl4cGPUShaderFP64Tests.cpp | 13215 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/ |
D | bytecode-generator.cc | 3661 Register first_arg = args[reciever_arg_count]; in VisitCall() local 3665 .MoveRegister(first_arg, runtime_call_args[1]) in VisitCall()
|
/external/v8/src/ |
D | objects.h | 2472 uint32_t first_arg,
|
D | objects.cc | 15629 uint32_t first_arg, in EnsureCanContainElements() argument 15636 object, args->arguments() - first_arg - (arg_count - 1), arg_count, mode); in EnsureCanContainElements()
|