Home
last modified time | relevance | path

Searched refs:_fpos64_t (Results 1 – 16 of 16) sorted by relevance

/picolibc-latest/newlib/libc/stdio64/
Dftello64.c82 _fpos64_t pos; in ftello64()
106 pos = fp->_seek64 (fp->_cookie, (_fpos64_t) 0, SEEK_END); in ftello64()
107 if (pos == (_fpos64_t) -1) in ftello64()
117 pos = fp->_seek64 (fp->_cookie, (_fpos64_t) 0, SEEK_CUR); in ftello64()
118 if (pos == (_fpos64_t) -1) in ftello64()
Dfseeko64.c79 #define POS_ERR (-(_fpos64_t)1)
94 _fpos64_t (*seekfn) (void *, _fpos64_t, int); in fseeko64()
95 _fpos64_t curoff; in fseeko64()
97 _fpos64_t target; in fseeko64()
158 curoff = seekfn (fp->_cookie, (_fpos64_t) 0, SEEK_CUR); in fseeko64()
246 curoff = seekfn (fp->_cookie, (_fpos64_t)0, SEEK_CUR); in fseeko64()
304 curoff = target & ~((_fpos64_t)(fp->_blksize - 1)); in fseeko64()
Dfgetpos64.c67 _fpos64_t * pos) in fgetpos64()
69 *pos = (_fpos64_t)ftello64 (fp); in fgetpos64()
Dstdio64.c35 _fpos64_t offset, in __sseek64()
42 if (ret == (_fpos64_t)-1L) in __sseek64()
Dfsetpos64.c63 const _fpos64_t * pos) in fsetpos64()
/picolibc-latest/newlib/libc/stdio/
Dfunopen.c93 typedef _fpos64_t (*funseek)(void *_cookie, _fpos64_t _off, int _whence);
148 _fpos64_t result; in funseeker()
150 if ((result = c->seekfn (c->cookie, (_fpos64_t) off, whence)) < 0 && errno) in funseeker()
162 static _fpos64_t
165 _fpos64_t off, in funseeker64()
168 _fpos64_t result; in funseeker64()
Dfopencookie.c163 static _fpos64_t
166 _fpos64_t pos, in fcseeker64()
174 return (_fpos64_t) offset; in fcseeker64()
Dstdio.h180 _fpos64_t (*_seek64) (void *, _fpos64_t, int);
214 typedef _fpos64_t fpos64_t;
574 int fgetpos64 (FILE *, _fpos64_t *);
575 int fsetpos64 (FILE *, const _fpos64_t *);
599 _fpos64_t (*__seekfn)(void *__c, _fpos64_t __off, int __whence),
606 _fpos64_t (*__seekfn)(void *__c, _fpos64_t __off, int __whence),
Dfmemopen.c214 static _fpos64_t
217 _fpos64_t pos, in fmemseeker64()
250 return (_fpos64_t) offset; in fmemseeker64()
Dopen_memstream.c222 static _fpos64_t
225 _fpos64_t pos, in memseeker64()
276 return (_fpos64_t) offset; in memseeker64()
Dlocal.h198 extern _fpos64_t __sseek64 (void *, _fpos64_t, int);
Dfflush.c132 _fpos64_t curoff; in _sflush()
/picolibc-latest/newlib/libc/machine/spu/machine/
D_types.h49 typedef _fpos_t _fpos64_t; typedef
/picolibc-latest/newlib/libc/include/sys/
D_types.h166 typedef _off64_t _fpos64_t; typedef
/picolibc-latest/test/
Dtest-funopen.c45 # define SEEK_T _fpos64_t
/picolibc-latest/newlib/
DChangeLog-20159601 * libc/sys/linux/sys/_types.h: Add _fpos_t and _fpos64_t
9610 * libc/include/sys/reent.h: Remove _fpos_t and _fpos64_t.
9611 * libc/include/sys/_types.h: Move _fpos_t and _fpos64_t to here,
9614 typedefs for _fpos_t and _fpos64_t.
15982 * libc/stdio64/local64.h: Use _fpos64_t instead of fpos64_t.