/picolibc-latest/newlib/libc/stdio64/ |
D | ftello64.c | 78 _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()
|
D | stdio64.c | 30 _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()
|
D | fsetpos64.c | 65 int x = fseeko64 (iop, (_off64_t)(*pos), SEEK_SET); in fsetpos64()
|
D | fseeko64.c | 88 _off64_t 91 _off64_t offset, in fseeko64() 111 return (_off64_t) fseeko (fp, offset, whence); in fseeko64()
|
/picolibc-latest/semihost/ |
D | lseek64.c | 44 _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/ |
D | arc_stub.c | 44 _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/ |
D | fake_stub.c | 84 _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/ |
D | powerpc_stub.c | 85 _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/ |
D | e9_stub.c | 89 _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/ |
D | mips_stub.c | 83 _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/ |
D | msp430-stub.c | 89 _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/ |
D | sparc_stub.c | 83 _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/ |
D | sh_stub.c | 90 _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/ |
D | m68k_lseek.c | 45 _off64_t 46 lseek64(int fd, _off64_t offset, int whence) in lseek64()
|
D | m68k_stub.c | 46 return (off_t) lseek64(fd, (_off64_t) offset, whence); in lseek()
|
/picolibc-latest/semihost/machine/nios2/ |
D | nios2_lseek.c | 45 _off64_t 46 lseek64(int fd, _off64_t offset, int whence) in lseek64()
|
D | nios2_stub.c | 46 return (off_t) lseek64(fd, (_off64_t) offset, whence); in lseek()
|
/picolibc-latest/newlib/libc/include/sys/ |
D | _types.h | 144 __extension__ typedef long long _off64_t; typedef 150 typedef _off64_t __loff_t; 166 typedef _off64_t _fpos64_t;
|
D | unistd.h | 313 _off64_t lseek64 (int __filedes, _off64_t __offset, int __whence);
|
/picolibc-latest/newlib/libc/stdio/ |
D | fopencookie.c | 146 _off64_t offset = (_off64_t) pos; in fcseeker() 169 _off64_t offset = (_off64_t) pos; in fcseeker64()
|
D | fmemopen.c | 170 _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()
|
D | open_memstream.c | 82 # 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()
|
D | stdio.h | 179 _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/ |
D | ChangeLog-2015 | 15981 * libc/reent/lseek64r.c: Use _off64_t instead of off64_t. 17304 * libc/include/sys/_types.h(_off64_t): Added.
|