Home
last modified time | relevance | path

Searched refs:_off64_t (Results 1 – 24 of 24) sorted by relevance

/picolibc-latest/newlib/libc/stdio64/
Dftello64.c78 _off64_t
86 return (_off64_t) ftello (fp); in ftello64()
98 return (_off64_t) -1; in ftello64()
110 return (_off64_t) -1; in ftello64()
121 return (_off64_t) pos; in ftello64()
146 return (_off64_t) pos; in ftello64()
Dstdio64.c30 _off64_t lseek64(int fd, _off64_t offset, int whence);
39 register _off64_t ret; in __sseek64()
41 ret = lseek64 (fp->_file, (_off64_t) offset, whence); in __sseek64()
65 (void) lseek64 (fp->_file, (_off64_t)0, SEEK_END); in __swrite64()
Dfsetpos64.c65 int x = fseeko64 (iop, (_off64_t)(*pos), SEEK_SET); in fsetpos64()
Dfseeko64.c88 _off64_t
91 _off64_t offset, in fseeko64()
111 return (_off64_t) fseeko (fp, offset, whence); in fseeko64()
/picolibc-latest/semihost/
Dlseek64.c44 _off64_t lseek64(int fd, _off64_t offset, int whence) in lseek64()
46 return (_off64_t) lseek(fd, (off_t) offset, whence); in lseek64()
/picolibc-latest/semihost/machine/arc/
Darc_stub.c44 _off64_t lseek64(int fd, _off64_t offset, int whence) in lseek64()
46 return (_off64_t) lseek(fd, (off_t) offset, whence); in lseek64()
/picolibc-latest/semihost/fake/
Dfake_stub.c84 _off64_t lseek64(int fd, _off64_t offset, int whence) in lseek64()
86 return (_off64_t) lseek(fd, (off_t) offset, whence); in lseek64()
/picolibc-latest/semihost/machine/powerpc/
Dpowerpc_stub.c85 _off64_t lseek64(int fd, _off64_t offset, int whence) in lseek64()
87 return (_off64_t) lseek(fd, (off_t) offset, whence); in lseek64()
/picolibc-latest/semihost/machine/x86/
De9_stub.c89 _off64_t lseek64(int fd, _off64_t offset, int whence) in lseek64()
91 return (_off64_t) lseek(fd, (off_t) offset, whence); in lseek64()
/picolibc-latest/semihost/machine/mips/
Dmips_stub.c83 _off64_t lseek64(int fd, _off64_t offset, int whence) in lseek64()
85 return (_off64_t) lseek(fd, (off_t) offset, whence); in lseek64()
/picolibc-latest/semihost/machine/msp430/
Dmsp430-stub.c89 _off64_t lseek64(int fd, _off64_t offset, int whence) in lseek64()
91 return (_off64_t) lseek(fd, (off_t) offset, whence); in lseek64()
/picolibc-latest/semihost/machine/sparc/
Dsparc_stub.c83 _off64_t lseek64(int fd, _off64_t offset, int whence) in lseek64()
85 return (_off64_t) lseek(fd, (off_t) offset, whence); in lseek64()
/picolibc-latest/semihost/machine/sh/
Dsh_stub.c90 _off64_t lseek64(int fd, _off64_t offset, int whence) in lseek64()
92 return (_off64_t) lseek(fd, (off_t) offset, whence); in lseek64()
/picolibc-latest/semihost/machine/m68k/
Dm68k_lseek.c45 _off64_t
46 lseek64(int fd, _off64_t offset, int whence) in lseek64()
Dm68k_stub.c46 return (off_t) lseek64(fd, (_off64_t) offset, whence); in lseek()
/picolibc-latest/semihost/machine/nios2/
Dnios2_lseek.c45 _off64_t
46 lseek64(int fd, _off64_t offset, int whence) in lseek64()
Dnios2_stub.c46 return (off_t) lseek64(fd, (_off64_t) offset, whence); in lseek()
/picolibc-latest/newlib/libc/include/sys/
D_types.h144 __extension__ typedef long long _off64_t; typedef
150 typedef _off64_t __loff_t;
166 typedef _off64_t _fpos64_t;
Dunistd.h313 _off64_t lseek64 (int __filedes, _off64_t __offset, int __whence);
/picolibc-latest/newlib/libc/stdio/
Dfopencookie.c146 _off64_t offset = (_off64_t) pos; in fcseeker()
169 _off64_t offset = (_off64_t) pos; in fcseeker64()
Dfmemopen.c170 _off64_t offset = (_off64_t) pos; in fmemseeker()
220 _off64_t offset = (_off64_t) pos; in fmemseeker64()
231 else if (offset > (_off64_t) c->max) in fmemseeker64()
Dopen_memstream.c82 # define OFF_T _off64_t
228 _off64_t offset = (_off64_t) pos; in memseeker64()
240 else if ((_off64_t) (size_t) offset != offset) in memseeker64()
Dstdio.h179 _off64_t _offset; /* current lseek offset */
572 _off64_t ftello64 (FILE *);
573 _off64_t fseeko64 (FILE *, _off64_t, int);
634 typedef int cookie_seek_function_t(void *__cookie, _off64_t *__off,
/picolibc-latest/newlib/
DChangeLog-201515981 * libc/reent/lseek64r.c: Use _off64_t instead of off64_t.
17304 * libc/include/sys/_types.h(_off64_t): Added.