Searched refs:args_in (Results 1 - 1 of 1) sorted by relevance

/gem5/ext/pybind11/include/pybind11/
H A Dpybind11.h424 static PyObject *dispatcher(PyObject *self, PyObject *args_in, PyObject *kwargs_in) { argument
432 const size_t n_args_in = (size_t) PyTuple_GET_SIZE(args_in);
434 handle parent = n_args_in > 0 ? PyTuple_GET_ITEM(args_in, 0) : nullptr,
508 call.init_self = PyTuple_GET_ITEM(args_in, 0);
523 handle arg(PyTuple_GET_ITEM(args_in, args_copied));
579 // We didn't copy out any position arguments from the args_in tuple, so we
581 extra_args = reinterpret_borrow<tuple>(args_in);
588 extra_args[i] = PyTuple_GET_ITEM(args_in, args_copied + i);
747 auto args_ = reinterpret_borrow<tuple>(args_in);

Completed in 12 milliseconds