Lines Matching refs:parameter_count
324 size_t ParameterCount() const { return location_sig_->parameter_count(); }
366 size_t InputCount() const { return 1 + location_sig_->parameter_count(); }
515 int parameter_count,
575 static int GetStubCallContextParamIndex(int parameter_count) {
576 return parameter_count + 0; // Parameter (arity + 0) is special.
580 static constexpr int GetJSCallNewTargetParamIndex(int parameter_count) {
581 return parameter_count + 0; // Parameter (arity + 0) is special.
585 static constexpr int GetJSCallArgCountParamIndex(int parameter_count) {
586 return parameter_count + 1; // Parameter (arity + 1) is special.
590 static constexpr int GetJSCallContextParamIndex(int parameter_count) {
591 return parameter_count + 2; // Parameter (arity + 2) is special.