Home
last modified time | relevance | path

Searched refs:_lseeki64 (Results 1 – 18 of 18) sorted by relevance

/third_party/curl/src/
Dtool_cb_see.c98 # undef _lseeki64
99 # define _lseeki64(hnd,ofs,whence) lseek(hnd,ofs,whence) macro
112 if(_lseeki64(fd, where, SEEK_SET) < 0) in tool_ftruncate64()
/third_party/node/deps/zlib/patches/
D0012-lfs-open64.patch17 # define LSEEK _lseeki64
/third_party/libsnd/programs/
Dsndfile-salvage.c194 if (_lseeki64 (fd, offset, whence) < 0) in lseek_or_die()
/third_party/ffmpeg/libavformat/
Dos_support.h48 # define lseek(f,p,w) _lseeki64((f), (p), (w))
/third_party/libsnd/tests/
Dwin32_test.c55 #define LSEEK _lseeki64
/third_party/python/Modules/_io/
Dfileio.c706 pos = _lseeki64(self->fd, 0L, SEEK_CUR);
916 res = _lseeki64(fd, pos, whence);
/third_party/curl/lib/
Dcurl_setup.h391 # define lseek(fdes,offset,whence) _lseeki64(fdes, offset, whence)
/third_party/node/deps/zlib/
Dgzlib.c9 # define LSEEK _lseeki64
/third_party/zlib/
Dgzlib.c11 # define LSEEK _lseeki64
DChangeLog103 - Fix gzseek() problem on MinGW due to buggy _lseeki64 there
276 - Do not use _lseeki64 under Borland C++ [Truta]
/third_party/skia/third_party/externals/zlib/
Dgzlib.c9 # define LSEEK _lseeki64
/third_party/node/deps/v8/third_party/zlib/
Dgzlib.c9 # define LSEEK _lseeki64
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/
Draw_ostream.cpp602 pos = ::_lseeki64(FD, off, SEEK_SET); in seek()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
Draw_ostream.cpp756 pos = ::_lseeki64(FD, off, SEEK_SET); in seek()
/third_party/node/deps/uvwasi/src/
Duvwasi.c176 r = _lseeki64(fd, offset, real_whence); in uvwasi__lseek()
/third_party/node/deps/uv/src/win/
Dfs.c2115 result_offset = _lseeki64(fd_in, offset, SEEK_SET); in fs__sendfile()
/third_party/libuv/src/win/
Dfs.c2115 result_offset = _lseeki64(fd_in, offset, SEEK_SET); in fs__sendfile()
/third_party/python/Modules/
Dposixmodule.c9424 result = _lseeki64(fd, position, how); in os_lseek_impl()