Lines Matching defs:pos
359 Py_ssize_t size = self->pos;
378 "seek($self, pos, whence=0, /)\n"
383 "Seek to byte offset pos relative to position indicated by whence:\n"
384 " 0 Start of stream (the default). pos should be >= 0;\n"
385 " 1 Current position - pos may be negative;\n"
386 " 2 End of stream - pos usually negative.\n"
393 _io_BytesIO_seek_impl(bytesio *self, Py_ssize_t pos, int whence);
399 Py_ssize_t pos;
415 pos = ival;
425 return_value = _io_BytesIO_seek_impl(self, pos, whence);