Home
last modified time | relevance | path

Searched refs:__whence (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/
H A Dstdio_sync_filebuf.h198 int __whence; in _GLIBCXX_VISIBILITY() local
200 __whence = SEEK_SET; in _GLIBCXX_VISIBILITY()
202 __whence = SEEK_CUR; in _GLIBCXX_VISIBILITY()
204 __whence = SEEK_END; in _GLIBCXX_VISIBILITY()
206 if (!fseeko64(_M_file, __off, __whence)) in _GLIBCXX_VISIBILITY()
209 if (!fseek(_M_file, __off, __whence)) in _GLIBCXX_VISIBILITY()
/netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
H A Dstdio_sync_filebuf.h197 int __whence; in _GLIBCXX_VISIBILITY() local
199 __whence = SEEK_SET; in _GLIBCXX_VISIBILITY()
201 __whence = SEEK_CUR; in _GLIBCXX_VISIBILITY()
203 __whence = SEEK_END; in _GLIBCXX_VISIBILITY()
205 if (!fseeko64(_M_file, __off, __whence)) in _GLIBCXX_VISIBILITY()
208 if (!fseek(_M_file, __off, __whence)) in _GLIBCXX_VISIBILITY()
/netbsd-src/external/apache2/llvm/dist/libcxx/include/
H A Dfstream939 int __whence;
943 __whence = SEEK_SET;
946 __whence = SEEK_CUR;
949 __whence = SEEK_END;
955 if (fseek(__file_, __width > 0 ? __width * __off : 0, __whence))
959 if (fseeko(__file_, __width > 0 ? __width * __off : 0, __whence))
/netbsd-src/external/bsd/pdisk/dist/
H A Dfile_media.c62 extern __loff_t llseek __P ((int __fd, __loff_t __offset, int __whence));
/netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/stdc/
H A Dstdio.d759 int function(void* __cookie, long* __pos, int __whence) seek;