HomeSort by relevance Sort by last modified time
    Searched refs:fseeko (Results 1 - 25 of 30) sorted by null

1 2

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
fsetpos.c 37 * fsetpos: like fseeko.
42 return (fseeko(iop, (off_t)*pos, SEEK_SET));
fseek.c 49 fseeko(FILE *fp, off_t offset, int whence) function
250 return (fseeko(fp, offset, whence));
  /external/libvpx/libvpx/
tools_common.h 26 #define fseeko _fseeki64 macro
34 #define fseeko fseeko64 macro
54 #define fseeko fseek macro
webmenc.c 95 fseeko(glob->stream, *ebmlLoc, SEEK_SET);
99 fseeko(glob->stream, pos, SEEK_SET);
124 fseeko(ebml->stream, ebml->seek_info_pos, SEEK_SET);
327 fseeko(glob->stream, glob->track_id_pos, SEEK_SET);
330 fseeko(glob->stream, 0, SEEK_END);
  /external/chromium_org/third_party/ots/test/
file-stream.h 37 if (!::fseeko(file_, position, SEEK_SET)) {
  /external/chromium_org/third_party/libvpx/source/libvpx/
tools_common.h 26 #define fseeko _fseeki64 macro
30 #define fseeko fseeko64 macro
48 #define fseeko fseek macro
vpxenc.c     [all...]
  /bionic/libc/upstream-netbsd/lib/libc/gen/
utmp.c 55 (void)fseeko(ut, (off_t)0, SEEK_SET);
  /external/bsdiff/
bspatch.c 116 if (fseeko(cpf, 32, SEEK_SET))
117 err(1, "fseeko(%s, %lld)", argv[3],
123 if (fseeko(dpf, 32 + bzctrllen, SEEK_SET))
124 err(1, "fseeko(%s, %lld)", argv[3],
130 if (fseeko(epf, 32 + bzctrllen + bzdatalen, SEEK_SET))
131 err(1, "fseeko(%s, %lld)", argv[3],
bsdiff.c 389 if (fseeko(pf, 0, SEEK_SET))
390 err(1, "fseeko");
  /external/llvm/include/llvm/Target/
TargetLibraryInfo.h 18 #ifdef fseeko
19 #undef fseeko macro
307 /// int fseeko(FILE *stream, off_t offset, int whence);
308 fseeko, enumerator in enum:llvm::LibFunc::Func
  /external/bison/darwin-lib/
stdio.h 731 fseek module depends on the fseeko module, so we only have three
746 3. The developer is using the fseeko module, but not fseek. Gnulib
784 /* Provide an fseeko function that is aware of a preceding fflush(), and which
787 # undef fseeko
788 # define fseeko rpl_fseeko
790 _GL_FUNCDECL_RPL (fseeko, int, (FILE *fp, off_t offset, int whence)
792 _GL_CXXALIAS_RPL (fseeko, int, (FILE *fp, off_t offset, int whence));
795 _GL_FUNCDECL_SYS (fseeko, int, (FILE *fp, off_t offset, int whence)
798 _GL_CXXALIAS_SYS (fseeko, int, (FILE *fp, off_t offset, int whence));
800 _GL_CXXALIASWARN (fseeko);
804 # undef fseeko macro
    [all...]
  /external/bison/linux-lib/
stdio.h 731 fseek module depends on the fseeko module, so we only have three
746 3. The developer is using the fseeko module, but not fseek. Gnulib
784 /* Provide an fseeko function that is aware of a preceding fflush(), and which
787 # undef fseeko
788 # define fseeko rpl_fseeko
790 _GL_FUNCDECL_RPL (fseeko, int, (FILE *fp, off_t offset, int whence)
792 _GL_CXXALIAS_RPL (fseeko, int, (FILE *fp, off_t offset, int whence));
795 _GL_FUNCDECL_SYS (fseeko, int, (FILE *fp, off_t offset, int whence)
798 _GL_CXXALIAS_SYS (fseeko, int, (FILE *fp, off_t offset, int whence));
800 _GL_CXXALIASWARN (fseeko);
804 # undef fseeko macro
    [all...]
  /external/bison/lib/
stdio.in.h 419 fseek module depends on the fseeko module, so we only have three
434 3. The developer is using the fseeko module, but not fseek. Gnulib
472 /* Provide an fseeko function that is aware of a preceding fflush(), and which
475 # undef fseeko
476 # define fseeko rpl_fseeko
478 _GL_FUNCDECL_RPL (fseeko, int, (FILE *fp, off_t offset, int whence)
480 _GL_CXXALIAS_RPL (fseeko, int, (FILE *fp, off_t offset, int whence));
483 _GL_FUNCDECL_SYS (fseeko, int, (FILE *fp, off_t offset, int whence)
486 _GL_CXXALIAS_SYS (fseeko, int, (FILE *fp, off_t offset, int whence));
488 _GL_CXXALIASWARN (fseeko);
    [all...]
  /external/chromium_org/chrome/installer/mac/third_party/bsdiff/
goobspatch.c 267 if ((fseeko(cf->f, off, SEEK_SET)) != 0)
268 err(1, "fseeko(%s, %lld)", tag, off);
433 if (fseeko(f, 0, SEEK_END) != 0 || (patchsize = ftello(f)) < 0)
434 err(1, "fseeko/ftello(%s)", argv[3]);
goobsdiff.c 509 if (fseeko(pf, 0, SEEK_SET))
510 err(1, "fseeko");
  /external/flac/libFLAC/
metadata_iterators.c 50 #define fseeko fseek macro
537 if(0 != fseeko(iterator->file, iterator->length, SEEK_CUR)) {
557 if(0 != fseeko(iterator->file, iterator->first_offset, SEEK_SET)) {
565 /* we ignore any error from ftello() and catch it in fseeko() */
567 if(0 != fseeko(iterator->file, iterator->length, SEEK_CUR)) {
636 if(0 != fseeko(iterator->file, -((int)id_bytes), SEEK_CUR)) {
661 if(0 != fseeko(iterator->file, iterator->offset[iterator->depth] + FLAC__STREAM_METADATA_HEADER_LENGTH, SEEK_SET)) {
    [all...]
  /bionic/libc/include/
stdio.h 282 int fseeko(FILE *, off_t, int);
  /development/ndk/platforms/android-3/include/
stdio.h 219 int fseeko(FILE *, off_t, int);
  /development/ndk/platforms/android-8/include/
stdio.h 219 int fseeko(FILE *, off_t, int);
  /development/ndk/platforms/android-L/include/
stdio.h 277 int fseeko(FILE *, off_t, int);
  /external/libedit/src/
readline.c 1206 if (fseeko(fp, (off_t)sizeof(buf) * count, SEEK_SET) ==
1253 if (fseeko(tp, (off_t)sizeof(buf) * count, SEEK_SET) < 0) {
1271 if (fseeko(fp, (off_t)0, SEEK_SET) == (off_t)-1) {
1276 if (fseeko(tp, (off_t)sizeof(buf) * count + (cp - buf), SEEK_SET) ==
    [all...]
  /bootable/recovery/applypatch/
bsdiff.c 398 if (fseeko(pf, 0, SEEK_SET))
399 err(1, "fseeko");
  /external/chromium_org/third_party/skia/third_party/lua/src/
liolib.c 91 #define l_fseek(f,o,w) fseeko(f,o,w)
  /external/llvm/lib/Target/
TargetLibraryInfo.cpp 164 "fseeko",
540 TLI.setUnavailable(LibFunc::fseeko);

Completed in 401 milliseconds

1 2