Searched refs:parameter_count (Results 26 - 50 of 125) sorted by relevance

12345

/external/v8/src/runtime/
H A Druntime-interpreter.cc97 bytecode_iterator.bytecode_array()->parameter_count())
129 bytecode_array->parameter_count());
/external/mesa3d/src/compiler/glsl/
H A Dast_function.cpp963 const unsigned parameter_count = local
966 if (parameter_count == 0
968 constructor_type->vector_elements != parameter_count)
970 constructor_type->matrix_columns != parameter_count)) {
1069 const unsigned parameter_count =
1073 if ((parameter_count == 0) ||
1074 (!is_unsized_array && (constructor_type->length != parameter_count))) {
1088 parameter_count);
1090 assert(constructor_type->length == parameter_count);
1141 parameter_count);
1722 const unsigned parameter_count = local
[all...]
/external/tensorflow/tensorflow/compiler/xla/service/
H A Dhlo_module.cc285 module_config.entry_computation_layout().parameter_count());
366 for (int64 i = 0; i < entry_layout->parameter_count(); ++i) {
406 int64 parameter_count = 0; local
426 parameter_count, old_operand->shape(), ""));
427 ++parameter_count;
H A Dhlo_computation.h347 const string& name, int parameter_count,
/external/v8/src/
H A Dcode-stubs-hydrogen.cc49 int parameter_count = GetParameterCount(); local
50 parameters_.reset(new HParameter*[parameter_count]);
306 int parameter_count = descriptor.GetStackParameterCount(); local
308 parameter_count--;
310 info.set_parameter_count(parameter_count);
H A Ddeoptimizer.cc497 int parameter_count = local
501 input_ = new (size) FrameDescription(size, parameter_count);
836 int parameter_count = shared->internal_formal_parameter_count() + 1; local
838 FrameDescription(output_frame_size, parameter_count);
857 for (int i = 0; i < parameter_count; ++i) {
1081 int parameter_count = shared->internal_formal_parameter_count() + 1; local
1083 FrameDescription(output_frame_size, parameter_count);
1102 for (int i = 0; i < parameter_count; ++i) {
1333 int parameter_count = height; local
1335 FrameDescription(output_frame_size, parameter_count);
1554 int parameter_count = height; local
2279 FrameDescription(uint32_t frame_size, int parameter_count) argument
2659 int parameter_count; local
3143 int parameter_count = local
3150 int parameter_count = local
[all...]
H A Dinterface-descriptors.cc25 int parameter_count, int extra_parameter_count,
29 param_count_ = parameter_count + extra_parameter_count;
32 if (machine_types == NULL || i >= parameter_count) {
24 InitializePlatformIndependent( int parameter_count, int extra_parameter_count, const MachineType* machine_types) argument
/external/v8/src/compiler/
H A Dbytecode-analysis.cc17 BytecodeLoopAssignments::BytecodeLoopAssignments(int parameter_count, argument
19 : parameter_count_(parameter_count),
21 BitVector(parameter_count + register_count, zone)) {}
67 DCHECK_LT(index, parameter_count());
399 {loop_header, LoopInfo(parent_offset, bytecode_array_->parameter_count(),
H A Dbytecode-graph-builder.cc29 int parameter_count, Node* control_dependency, Node* context);
36 int parameter_count() const { return parameter_count_; } function in class:v8::internal::compiler::BytecodeGraphBuilder::Environment
121 int parameter_count,
126 parameter_count_(parameter_count),
143 for (int i = 0; i < parameter_count; i++) {
181 return the_register.ToParameterIndex(parameter_count());
284 for (int i = 0; i < parameter_count(); i++) {
384 for (int i = 0; i < parameter_count(); i++) {
425 if (parameter_count() == register_count()) {
429 parameter_count(), nullpt
119 Environment(BytecodeGraphBuilder* builder, int register_count, int parameter_count, Node* control_dependency, Node* context) argument
[all...]
H A Draw-machine-assembler.cc26 parameters_(parameter_count(), zone()),
28 int param_count = static_cast<int>(parameter_count());
31 for (size_t i = 0; i < parameter_count(); ++i) {
68 DCHECK(index < parameter_count());
H A Djs-inlining.cc224 int parameter_count,
230 parameter_count + 1, 0, shared);
237 for (int parameter = 0; parameter < parameter_count + 1; ++parameter) {
729 int parameter_count = shared_info->internal_formal_parameter_count(); local
730 DCHECK_EQ(parameter_count, start->op()->ValueOutputCount() - 5);
731 if (call.formal_arguments() != parameter_count) {
223 CreateArtificialFrameState(Node* node, Node* outer_frame_state, int parameter_count, BailoutId bailout_id, FrameStateType frame_state_type, Handle<SharedFunctionInfo> shared) argument
H A Djs-create-lowering.cc459 int length = args_state_info.parameter_count() - 1; // Minus receiver.
488 int length = args_state_info.parameter_count() - 1; // Minus receiver.
522 int argument_count = args_state_info.parameter_count() - 1;
987 int argument_count = state_info.parameter_count() - 1; // Minus receiver.
1011 int argument_count = state_info.parameter_count() - 1; // Minus receiver.
1042 int argument_count = state_info.parameter_count() - 1; // Minus receiver.
1047 int parameter_count = shared->internal_formal_parameter_count(); local
1048 if (parameter_count == 0) {
1053 int mapped_count = Min(argument_count, parameter_count);
1081 int idx = Context::MIN_CONTEXT_SLOTS + parameter_count
[all...]
H A Dint64-lowering.cc90 // GetParameterIndexAfterLowering(parameter_count) returns the parameter count
93 signature, static_cast<int>(signature->parameter_count()));
246 int parameter_count = GetParameterCountAfterLowering(signature()); local
248 if (parameter_count != static_cast<int>(signature()->parameter_count())) {
250 parameter_count - static_cast<int>(signature()->parameter_count());
263 static_cast<int>(signature()->parameter_count())) {
H A Dsimplified-operator.h423 const Operator* NewRestParameterElements(int parameter_count);
426 const Operator* NewUnmappedArgumentsElements(int parameter_count);
/external/v8/src/interpreter/
H A Dbytecode-array-builder.cc21 Isolate* isolate, Zone* zone, int parameter_count, int context_count,
30 parameter_count_(parameter_count),
52 zone, &register_allocator_, fixed_register_count(), parameter_count,
71 return Register::FromParameterIndex(parameter_index, parameter_count());
94 return pipeline_->ToBytecodeArray(isolate, register_count, parameter_count(),
1149 int parameter_index = reg.ToParameterIndex(parameter_count());
1150 return parameter_index >= 0 && parameter_index < parameter_count();
20 BytecodeArrayBuilder( Isolate* isolate, Zone* zone, int parameter_count, int context_count, int locals_count, FunctionLiteral* literal, SourcePositionTableBuilder::RecordingMode source_position_mode) argument
H A Dbytecode-register-optimizer.cc196 int fixed_registers_count, int parameter_count,
210 if (parameter_count != 0) {
212 -Register::FromParameterIndex(0, parameter_count).index();
194 BytecodeRegisterOptimizer( Zone* zone, BytecodeRegisterAllocator* register_allocator, int fixed_registers_count, int parameter_count, BytecodePipelineStage* next_stage) argument
H A Dbytecode-register-optimizer.h26 int fixed_registers_count, int parameter_count,
H A Dbytecode-peephole-optimizer.cc23 Isolate* isolate, int register_count, int parameter_count,
26 return next_stage_->ToBytecodeArray(isolate, register_count, parameter_count,
22 ToBytecodeArray( Isolate* isolate, int register_count, int parameter_count, Handle<FixedArray> handler_table) argument
H A Dbytecode-array-builder.h36 Isolate* isolate, Zone* zone, int parameter_count, int context_count,
44 int parameter_count() const { function in class:v8::internal::interpreter::final
H A Dbytecode-array-writer.cc36 Isolate* isolate, int register_count, int parameter_count,
45 bytecode_size, &bytecodes()->front(), frame_size, parameter_count,
35 ToBytecodeArray( Isolate* isolate, int register_count, int parameter_count, Handle<FixedArray> handler_table) argument
/external/v8/src/objects/
H A Dscope-info.cc133 const int parameter_count = scope->num_parameters(); local
135 const int length = kVariablePartIndex + parameter_count +
177 scope_info->SetParameterCount(parameter_count);
185 for (int i = 0; i < parameter_count; ++i) {
345 const int parameter_count = 0; local
346 const int length = kVariablePartIndex + parameter_count +
366 scope_info->SetParameterCount(parameter_count);
/external/tensorflow/tensorflow/compiler/xla/tests/
H A Dhlo_test_base.h178 module->mutable_entry_computation_layout()->parameter_count());
/external/tensorflow/tensorflow/compiler/xla/client/
H A Dlocal_client.cc60 if (arguments.size() != computation_layout.parameter_count()) {
63 computation_layout.parameter_count(), arguments.size());
/external/mesa3d/src/gallium/state_trackers/vdpau/
H A Dmixer.c44 uint32_t parameter_count,
128 for (i = 0; i < parameter_count; ++i) {
905 uint32_t parameter_count,
914 if (!parameter_count)
918 for (i = 0; i < parameter_count; ++i) {
41 vlVdpVideoMixerCreate(VdpDevice device, uint32_t feature_count, VdpVideoMixerFeature const *features, uint32_t parameter_count, VdpVideoMixerParameter const *parameters, void const *const *parameter_values, VdpVideoMixer *mixer) argument
904 vlVdpVideoMixerGetParameterValues(VdpVideoMixer mixer, uint32_t parameter_count, VdpVideoMixerParameter const *parameters, void *const *parameter_values) argument
/external/v8/src/wasm/
H A Dwasm-opcodes.cc251 if (sig.parameter_count() == 0) os << "v";
252 for (size_t i = 0; i < sig.parameter_count(); ++i) {

Completed in 1893 milliseconds

12345