Home
last modified time | relevance | path

Searched refs:Py_off_t (Results 1 – 13 of 13) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_io/
Dbufferedio.c206 Py_off_t abs_pos;
211 Py_off_t pos;
213 Py_off_t raw_pos;
217 Py_off_t read_end;
220 Py_off_t write_pos;
223 Py_off_t write_end;
593 static Py_off_t
596 Py_off_t n; in _buffered_raw_tell()
614 static Py_off_t
615 _buffered_raw_seek(buffered *self, Py_off_t target, int whence) in _buffered_raw_seek()
[all …]
D_iomodule.h92 typedef PY_LONG_LONG Py_off_t; typedef
103 typedef off_t Py_off_t; typedef
131 extern Py_off_t PyNumber_AsOff_t(PyObject *item, PyObject *err);
D_iomodule.c535 Py_off_t
538 Py_off_t result; in PyNumber_AsOff_t()
546 result = (Py_off_t) PyInt_AS_LONG(value); in PyNumber_AsOff_t()
Dtextio.c1828 Py_off_t start_pos;
1842 #define COOKIE_BUF_LEN (sizeof(Py_off_t) + 3 * sizeof(int) + sizeof(char))
1866 # define OFF_DEC_FLAGS (sizeof(Py_off_t))
1867 # define OFF_BYTES_TO_FEED (sizeof(Py_off_t) + sizeof(int))
1868 # define OFF_CHARS_TO_SKIP (sizeof(Py_off_t) + 2 * sizeof(int))
1869 # define OFF_NEED_EOF (sizeof(Py_off_t) + 3 * sizeof(int))
Dfileio.c694 Py_off_t pos, res; in portable_lseek()
777 Py_off_t pos; in fileio_truncate()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
Dbufferedio.c206 Py_off_t abs_pos;
211 Py_off_t pos;
213 Py_off_t raw_pos;
217 Py_off_t read_end;
220 Py_off_t write_pos;
223 Py_off_t write_end;
621 static Py_off_t
624 Py_off_t n; in _buffered_raw_tell()
642 static Py_off_t
643 _buffered_raw_seek(buffered *self, Py_off_t target, int whence) in _buffered_raw_seek()
[all …]
D_iomodule.h97 typedef PY_LONG_LONG Py_off_t; typedef
108 typedef off_t Py_off_t; typedef
136 extern Py_off_t PyNumber_AsOff_t(PyObject *item, PyObject *err);
D_iomodule.c544 Py_off_t
547 Py_off_t result; in PyNumber_AsOff_t()
555 result = (Py_off_t) PyInt_AS_LONG(value); in PyNumber_AsOff_t()
Dtextio.c1874 Py_off_t start_pos;
1888 #define COOKIE_BUF_LEN (sizeof(Py_off_t) + 3 * sizeof(int) + sizeof(char))
1912 # define OFF_DEC_FLAGS (sizeof(Py_off_t))
1913 # define OFF_BYTES_TO_FEED (sizeof(Py_off_t) + sizeof(int))
1914 # define OFF_CHARS_TO_SKIP (sizeof(Py_off_t) + 2 * sizeof(int))
1915 # define OFF_NEED_EOF (sizeof(Py_off_t) + 3 * sizeof(int))
Dfileio.c706 Py_off_t pos, res; in portable_lseek()
789 Py_off_t pos; in fileio_truncate()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dfileobject.c682 typedef off_t Py_off_t; typedef
684 typedef off_t Py_off_t; typedef
686 typedef fpos_t Py_off_t; typedef
695 _portable_fseek(FILE *fp, Py_off_t offset, int whence) in _portable_fseek()
737 static Py_off_t
762 Py_off_t offset; in file_seek()
814 Py_off_t newsize; in file_truncate()
816 Py_off_t initialpos; in file_truncate()
926 Py_off_t pos; in file_tell()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dfileobject.c668 typedef off_t Py_off_t; typedef
670 typedef off_t Py_off_t; typedef
672 typedef fpos_t Py_off_t; typedef
681 _portable_fseek(FILE *fp, Py_off_t offset, int whence) in _portable_fseek()
723 static Py_off_t
748 Py_off_t offset; in file_seek()
800 Py_off_t newsize; in file_truncate()
802 Py_off_t initialpos; in file_truncate()
912 Py_off_t pos; in file_tell()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dbz2module.c28 typedef off_t Py_off_t; typedef
30 typedef off_t Py_off_t; typedef
32 typedef fpos_t Py_off_t; typedef
118 Py_off_t pos;
119 Py_off_t size;
1027 Py_off_t offset; in BZ2File_seek()
1031 Py_off_t bytesread = 0; in BZ2File_seek()