Home
last modified time | relevance | path

Searched refs:_fpos_t (Results 1 – 19 of 19) sorted by relevance

/picolibc-3.7.0-3.6.0/newlib/libc/stdio/
Dftello.c89 _fpos_t pos; in ftello()
109 pos = fp->_seek (fp->_cookie, (_fpos_t) 0, SEEK_END); in ftello()
110 if (pos == (_fpos_t) -1) in ftello()
120 pos = fp->_seek (fp->_cookie, (_fpos_t) 0, SEEK_CUR); in ftello()
121 if (pos == (_fpos_t) -1) in ftello()
Dfseeko.c88 #define POS_ERR (-(_fpos_t)1)
101 _fpos_t (*seekfn) (void *, _fpos_t, int); in fseeko()
103 _fpos_t target; in fseeko()
111 _fpos_t curoff = 0; in fseeko()
156 curoff = seekfn (fp->_cookie, (_fpos_t) 0, SEEK_CUR); in fseeko()
Dfopencookie.c136 static _fpos_t
139 _fpos_t pos, in fcseeker()
153 else if ((_fpos_t)offset != offset) in fcseeker()
159 return (_fpos_t) offset; in fcseeker()
Dfsetpos.c64 const _fpos_t * pos) in fsetpos()
Dfgetpos.c70 _fpos_t *__restrict pos) in fgetpos()
Dstdio.c107 _fpos_t
110 _fpos_t offset, in __sseek()
Dftell.c89 _fpos_t pos; in ftell()
Dfunopen.c135 static _fpos_t
138 _fpos_t off, in funseeker()
152 else if ((_fpos_t)result != result) in funseeker()
Dfmemopen.c160 static _fpos_t
163 _fpos_t pos, in fmemseeker()
188 else if ((_fpos_t) offset != offset) in fmemseeker()
208 return (_fpos_t) offset; in fmemseeker()
Dopen_memstream.c149 static _fpos_t
152 _fpos_t pos, in memseeker()
173 else if ((_fpos_t) offset != offset) in memseeker()
210 return (_fpos_t) offset; in memseeker()
Dstdio.h101 _fpos_t (*_seek) (void *, _fpos_t, int);
151 _fpos_t (*_seek) (void *, _fpos_t, int);
215 typedef _fpos_t fpos_t;
378 int fgetpos (FILE *, _fpos_t *);
384 int fsetpos (FILE *, const _fpos_t *);
Dlocal.h178 extern _fpos_t __sseek (void *, _fpos_t, int);
Dfflush.c135 _fpos_t curoff; in _sflush()
/picolibc-3.7.0-3.6.0/newlib/libc/machine/spu/machine/
D_types.h45 } _fpos_t; typedef
49 typedef _fpos_t _fpos64_t;
/picolibc-3.7.0-3.6.0/newlib/libc/machine/spu/
Dfsetpos.c42 const _fpos_t *pos;
49 const _fpos_t * pos) in fsetpos()
Dfgetpos.c41 _fpos_t * pos;
48 _fpos_t *__restrict pos) in fgetpos()
/picolibc-3.7.0-3.6.0/newlib/libc/include/sys/
D_types.h167 typedef long _fpos_t; /* XXX must match off_t in <sys/types.h> */ typedef
/picolibc-3.7.0-3.6.0/newlib/libc/tinystdio/
Dstdio.h302 __extension__ typedef _fpos_t fpos_t;
/picolibc-3.7.0-3.6.0/newlib/
DChangeLog-20154574 * libc/sys/rtems/machine/_types.h: Provide _mode_t, _fpos_t, _off_t.
4576 Let arm, i386, m68k, mips, PPC, sparc use 64bit _off_t, _fpos_t.
9601 * 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.
15938 with internal (_fpos_t and _off_t) datatypes when compiling newlib.
15945 * libc/stdio/fgetpos.c (fgetpos): Use _fpos_t instead of fpos_t.