Home
last modified time | relevance | path

Searched refs:fpos_t (Results 1 – 17 of 17) sorted by relevance

/device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
Dfseeko.c65 #define POS_ERR (-(fpos_t)1) in __weak_alias()
74 fpos_t (*seekfn)(void *, fpos_t, int); in __weak_alias()
75 fpos_t target, curoff; in __weak_alias()
124 curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR); in __weak_alias()
198 curoff = (*seekfn)(fp->_cookie, (fpos_t)0, SEEK_CUR); in __weak_alias()
234 target >= curoff && target < (fpos_t)(curoff + n)) { in __weak_alias()
287 (*seekfn)(fp->_cookie, (fpos_t)offset, whence) == POS_ERR) { in __weak_alias()
Dftello.c57 fpos_t pos; in __weak_alias()
75 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR); in __weak_alias()
76 if (pos == (fpos_t)-1) { in __weak_alias()
Dftell.c60 fpos_t pos; in ftell()
78 pos = (*fp->_seek)(fp->_cookie, (fpos_t)0, SEEK_CUR); in ftell()
Dfunopen.c54 fpos_t (*seekfn) __P((void *, fpos_t, int));
Dstdio.c100 fpos_t
101 __sseek(void *cookie, fpos_t offset, int whence) in __sseek()
Dlocal.h56 extern fpos_t __sseek(void *, fpos_t, int);
Dfsetpos.c57 fsetpos(FILE *iop, const fpos_t *pos) in fsetpos()
Dfgetpos.c54 fgetpos(FILE *fp, fpos_t *pos) in fgetpos()
Dfopen.c104 (void) __sseek((void *)fp, (fpos_t)0, SEEK_END); in fopen()
Dfreopen.c198 (void) __sseek((void *)fp, (fpos_t)0, SEEK_END); in freopen()
Dfindfp.c70 0, { '\0', '\0', '\0' }, { '\0' }, { NULL, 0 }, 0, (fpos_t)0 }
/device/linaro/bootloader/edk2/StdLib/Include/
Dstdio.h181 typedef __off_t fpos_t; typedef
185 } fpos_t; typedef
232 fpos_t (*_seek) (void *, fpos_t, int);
254 fpos_t _offset; /**< current lseek offset */
1317 int fgetpos (FILE * __restrict Stream, fpos_t * __restrict Pos);
1375 int fsetpos (FILE *Stream, const fpos_t *Pos);
1554 fpos_t (*)(void *, fpos_t, int),
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Sample/Tools/Source/GenSection/
DGenSection.c313 fpos_t FileSize; in GetSectionContents()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dfileobject.c686 typedef fpos_t Py_off_t;
708 fpos_t pos; in _portable_fseek()
747 fpos_t pos; in _portable_ftell()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dfileobject.c672 typedef fpos_t Py_off_t;
694 fpos_t pos; in _portable_fseek()
733 fpos_t pos; in _portable_ftell()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/tests/data/
Dinfinite_recursion.py2019 fpos_t = __darwin_off_t variable
2046 ('_seek', CFUNCTYPE(fpos_t, c_void_p, c_longlong, c_int)),
2055 ('_offset', fpos_t),
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dbz2module.c32 typedef fpos_t Py_off_t;