Home
last modified time | relevance | path

Searched refs:return_count (Results 1 – 6 of 6) sorted by relevance

/external/v8/src/compiler/
Dlinkage-impl.h31 const size_t return_count = 1; in GetJSCallDescriptor() local
35 LocationSignature::Builder locations(zone, return_count, parameter_count); in GetJSCallDescriptor()
36 MachineSignature::Builder types(zone, return_count, parameter_count); in GetJSCallDescriptor()
40 for (size_t i = 0; i < return_count; i++) { in GetJSCallDescriptor()
82 const size_t return_count = static_cast<size_t>(function->result_size); in GetRuntimeCallDescriptor() local
84 LocationSignature::Builder locations(zone, return_count, parameter_count); in GetRuntimeCallDescriptor()
85 MachineSignature::Builder types(zone, return_count, parameter_count); in GetRuntimeCallDescriptor()
89 for (size_t i = 0; i < return_count; i++) { in GetRuntimeCallDescriptor()
139 const size_t return_count = 1; in GetStubCallDescriptor() local
143 LocationSignature::Builder locations(zone, return_count, parameter_count); in GetStubCallDescriptor()
[all …]
Dmachine-type.h108 Signature(size_t return_count, size_t parameter_count, T* reps) in Signature() argument
109 : return_count_(return_count), in Signature()
113 size_t return_count() const { return return_count_; } in return_count() function
129 Builder(Zone* zone, size_t return_count, size_t parameter_count) in Builder() argument
130 : return_count_(return_count), in Builder()
136 static_cast<int>(return_count + parameter_count))) {} in Builder()
Dlinkage.h73 DCHECK(machine_sig->return_count() == location_sig->return_count()); in kind_()
84 size_t ReturnCount() const { return machine_sig_->return_count(); } in ReturnCount()
/external/lldb/source/Target/
DTargetList.cpp230 …size_t return_count = FileSpec::ResolveUsername(user_exe_path, unglobbed_path, sizeof(unglobbed_pa… in CreateTarget() local
232 if (return_count == 0 || return_count >= sizeof(unglobbed_path)) in CreateTarget()
/external/lldb/source/Host/common/
DFileSpec.cpp195 size_t return_count = ResolveUsername(src_path, unglobbed_path, sizeof(unglobbed_path)); in Resolve() local
199 if (return_count == 0 || return_count >= sizeof(unglobbed_path)) in Resolve()
/external/v8/test/cctest/compiler/
Dcall-tester.h148 size_t return_count = return_type == kMachNone ? 0 : 1;
151 MachineSignature::Builder builder(zone, return_count, param_count);
152 if (return_count > 0) builder.AddReturn(return_type);