Lines Matching refs:args
167 _io_BytesIO_read(bytesio *self, PyObject *const *args, Py_ssize_t nargs)
178 if (!_Py_convert_optional_to_ssize_t(args[0], &size)) {
204 _io_BytesIO_read1(bytesio *self, PyObject *const *args, Py_ssize_t nargs)
215 if (!_Py_convert_optional_to_ssize_t(args[0], &size)) {
242 _io_BytesIO_readline(bytesio *self, PyObject *const *args, Py_ssize_t nargs)
253 if (!_Py_convert_optional_to_ssize_t(args[0], &size)) {
280 _io_BytesIO_readlines(bytesio *self, PyObject *const *args, Py_ssize_t nargs)
291 arg = args[0];
356 _io_BytesIO_truncate(bytesio *self, PyObject *const *args, Py_ssize_t nargs)
367 if (!_Py_convert_optional_to_ssize_t(args[0], &size)) {
396 _io_BytesIO_seek(bytesio *self, PyObject *const *args, Py_ssize_t nargs)
407 PyObject *iobj = _PyNumber_Index(args[0]);
420 whence = _PyLong_AsInt(args[1]);
483 _io_BytesIO___init__(PyObject *self, PyObject *args, PyObject *kwargs)
490 Py_ssize_t nargs = PyTuple_GET_SIZE(args);
494 fastargs = _PyArg_UnpackKeywords(_PyTuple_CAST(args)->ob_item, nargs, kwargs, NULL, &_parser, 0, 1, 0, argsbuf);