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

12 3

  /external/flac/libFLAC/
metadata_iterators.c 520 if(0 != fseeko(iterator->file, iterator->length, SEEK_CUR)) {
540 if(0 != fseeko(iterator->file, iterator->first_offset, SEEK_SET)) {
548 /* we ignore any error from ftello() and catch it in fseeko() */
550 if(0 != fseeko(iterator->file, iterator->length, SEEK_CUR)) {
619 if(0 != fseeko(iterator->file, -((int)id_bytes), SEEK_CUR)) {
644 if(0 != fseeko(iterator->file, iterator->offset[iterator->depth] + FLAC__STREAM_METADATA_HEADER_LENGTH, SEEK_SET)) {
    [all...]
  /device/linaro/bootloader/edk2/StdLib/Include/
stdio.h 90 int fseeko (FILE *, off_t, int);
    [all...]
  /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...]
  /external/zlib/src/contrib/minizip/
ioapi.c 21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
minizip.c 35 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
miniunz.c 34 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
  /external/zlib/src/examples/
zran.c 277 ret = fseeko(in, here->in - (here->bits ? 1 : 0), SEEK_SET);
  /toolchain/binutils/binutils-2.27/zlib/contrib/minizip/
ioapi.c 21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
minizip.c 35 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
miniunz.c 34 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
  /toolchain/binutils/binutils-2.27/zlib/examples/
zran.c 277 ret = fseeko(in, here->in - (here->bits ? 1 : 0), SEEK_SET);
  /bionic/libc/stdio/
stdio.cpp 578 int fseeko(FILE* fp, off_t offset, int whence) { function
583 __strong_alias(fseek, fseeko);
592 return fseeko(fp, *pos, SEEK_SET);
  /external/pdfium/third_party/libtiff/
tiffiop.h 278 Use fseeko() and ftello() if they are available since they use
279 'off_t' rather than 'long'. It is wrong to use fseeko() and
289 # define fseek(stream,offset,whence) fseeko(stream,offset,whence)
  /toolchain/binutils/binutils-2.27/bfd/
bfdio.c 61 return fseeko (file, offset, whence);
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
pthread.h 536 #define fseeko(...) (pthread_testcancel(), fseeko(__VA_ARGS__)) macro
    [all...]
stdio.h 475 int fseeko(FILE* stream, _off_t offset, int whence);
480 #define fseeko fseeko64 macro
    [all...]
  /hardware/intel/common/libva/test/encode/
avcenc.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
liolib.c 91 #define l_fseek(f,o,w) fseeko(f,o,w)
  /external/syslinux/com32/lua/src/
liolib.c 91 #define l_fseek(f,o,w) fseeko(f,o,w)
  /external/libvpx/libvpx/
vpxenc.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
configure 425 # check for large file support, and if none, check for fseeko()
436 echo "Checking for fseeko... Yes." | tee -a configure.log
443 fseeko(NULL, 0, 0);
448 echo "Checking for fseeko... Yes." | tee -a configure.log
452 echo "Checking for fseeko... No." | tee -a configure.log
  /external/llvm/lib/Analysis/
TargetLibraryInfo.cpp 238 TLI.setUnavailable(LibFunc::fseeko);
724 case LibFunc::fseeko:
    [all...]
  /device/linaro/bootloader/edk2/StdLibPrivateInternalFiles/Include/
namespace.h 65 #define fseeko _fseeko
  /external/lz4/programs/
lz4io.c 69 # define fseek fseeko
    [all...]
  /external/python/cpython2/Modules/zlib/
configure 425 # check for large file support, and if none, check for fseeko()
436 echo "Checking for fseeko... Yes." | tee -a configure.log
443 fseeko(NULL, 0, 0);
448 echo "Checking for fseeko... Yes." | tee -a configure.log
452 echo "Checking for fseeko... No." | tee -a configure.log

Completed in 517 milliseconds

12 3