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

1 2 3

  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
fsetpos.c 62 return (fseeko(iop, (off_t)*pos, SEEK_SET));
fseek.c 73 return fseeko(fp, offset, whence);
Stdio.inf 106 fseeko.c #
fseeko.c 41 NetBSD: fseeko.c,v 1.5 2005/03/04 16:04:58 dsl Exp
62 __weak_alias(fseeko, _fseeko)
72 fseeko(FILE *fp, off_t offset, int whence)
  /external/libvpx/libvpx/
tools_common.h 27 #define fseeko _fseeki64 macro
32 #define fseeko fseeko64 macro
40 #define fseeko fseek macro
  /external/flac/include/share/
compat.h 53 #define fseeko _fseeki64 macro
57 #define fseeko fseeko64 macro
  /bionic/libc/upstream-netbsd/lib/libc/gen/
utmp.c 55 (void)fseeko(ut, (off_t)0, SEEK_SET);
  /external/libvpx/libvpx/third_party/libwebm/mkvmuxer/
mkvwriter.cc 82 return fseeko(file_, static_cast<off_t>(position), SEEK_SET);
  /external/libvpx/libvpx/third_party/libwebm/mkvparser/
mkvreader.cc 122 fseeko(m_file, static_cast<off_t>(offset), SEEK_SET);
  /external/ltp/testcases/kernel/fs/stream/
stream03.c 226 if (fseeko(stream, strlen(junk), 1) != 0) {
227 tst_brkm(TFAIL, NULL, "fseeko failed: %s",
241 if (fseeko(stream, 0, 2) != 0) {
242 tst_brkm(TFAIL, NULL, "fseeko failed: %s",
256 if (fseeko(stream, 0, 0) != 0) {
257 tst_brkm(TFAIL, NULL, "fseeko failed: %s",
  /system/core/libcutils/
open_memstream.c 289 fseeko(stream, 0, SEEK_SET);
291 fseeko(stream, eob, SEEK_SET);
304 fseeko(stream, 0, SEEK_SET);
306 //fseeko(stream, eob, SEEK_SET);
  /external/ImageMagick/MagickCore/
blob-private.h 31 # define fseek fseeko
  /external/pdfium/third_party/libopenjpeg20/
opj_includes.h 60 Use fseeko() and ftello() if they are available since they use
61 'off_t' rather than 'long'. It is wrong to use fseeko() and
66 # define fseek fseeko
  /external/syslinux/utils/
isohybrid.c 973 if (fseeko(fp, (off_t) (16 << 11), SEEK_SET))
979 if (fseeko(fp, (off_t) 17 * 2048, SEEK_SET))
992 if (fseeko(fp, ((off_t) catoffset) * 2048, SEEK_SET))
1042 if (fseeko(fp, (((off_t) de_lba) * 2048 + 0x40), SEEK_SET))
1078 if (fseeko(fp, (off_t) 440, SEEK_SET))
1102 if (fseeko(fp, (off_t) 0, SEEK_SET))
1143 if (fseeko(fp, (off_t) 512, SEEK_SET))
1160 fseeko(fp, (off_t) APM_OFFSET, SEEK_SET);
1189 if (fseeko(fp, (isostat.st_size + padding) - orig_gpt_size, SEEK_SET))
  /toolchain/binutils/binutils-2.27/bfd/
sysdep.h 163 extern int fseeko (FILE *stream, off_t offset, int whence);
  /external/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 23 #ifdef fseeko
24 #undef fseeko macro
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 23 #ifdef fseeko
24 #undef fseeko macro
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Analysis/
TargetLibraryInfo.h 23 #ifdef fseeko
24 #undef fseeko macro
  /external/zlib/src/contrib/minizip/
ioapi.h 56 #define fseeko64 fseeko
  /toolchain/binutils/binutils-2.27/zlib/contrib/minizip/
ioapi.h 56 #define fseeko64 fseeko
  /bionic/libc/include/
stdio.h 178 int fseeko(FILE* __fp, off_t __offset, int __whence) __RENAME(fseeko64) __INTRODUCED_IN(24);
190 int fseeko(FILE* __fp, off_t __offset, int __whence);
  /bionic/tests/
stdio_test.cpp     [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
stdio.h 770 extern int fseeko (FILE *__stream, __off_t __off, int __whence);
778 extern int __REDIRECT (fseeko,
783 # define fseeko fseeko64
  /system/core/libziparchive/
zip_writer.cc 275 if (fseeko(file_, current_offset_, SEEK_SET) != 0) {
453 if (fseeko(file_, current_file_entry_.local_file_header_offset, SEEK_SET) != 0) {
464 if (fseeko(file_, current_offset_, SEEK_SET) != 0) {
  /bionic/tests/headers/posix/
stdio_h.c 100 FUNCTION(fseeko, int (*f)(FILE*, off_t, int));

Completed in 734 milliseconds

1 2 3