Home
last modified time | relevance | path

Searched refs:PyLong_FromOff_t (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Modules/_io/
D_iomodule.h100 # define PyLong_FromOff_t PyLong_FromLongLong macro
112 # define PyLong_FromOff_t PyLong_FromSsize_t macro
119 # define PyLong_FromOff_t PyLong_FromLongLong macro
126 # define PyLong_FromOff_t PyLong_FromLong macro
Dbufferedio.c795 posobj = PyLong_FromOff_t(target); in _buffered_raw_seek()
1332 return PyLong_FromOff_t(pos); in _io__Buffered_tell_impl()
1404 return PyLong_FromOff_t(0); in _io__Buffered_seek_impl()
1406 return PyLong_FromOff_t(current - avail + offset); in _io__Buffered_seek_impl()
1429 res = PyLong_FromOff_t(n); in _io__Buffered_seek_impl()
Dtextio.c2626 posobj = PyLong_FromOff_t(cookie.start_pos); in _io_TextIOWrapper_seek_impl()