/external/ImageMagick/m4/ |
D | ac_func_fseeko.m4 | 55 AN_FUNCTION([fseeko], [AC_FUNC_FSEEKO]) 59 [Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2).], 62 [[int (*fp) (FILE *, off_t, int) = fseeko; 63 return fseeko (stdin, 0, 0) && fp (stdin, 0, 0);]]) 67 # If you want fseeko and ftello with glibc, upgrade to a fixed glibc. 70 [Define to 1 if fseeko (and presumably ftello) exists and is declared.])
|
/external/libvpx/libvpx/ |
D | tools_common.h | 27 #define fseeko _fseeki64 macro 32 #define fseeko fseeko64 macro 40 #define fseeko fseek macro
|
/external/ltp/testcases/kernel/fs/stream/ |
D | stream03.c | 226 if (fseeko(stream, strlen(junk), 1) != 0) { in main() 241 if (fseeko(stream, 0, 2) != 0) { in main() 256 if (fseeko(stream, 0, 0) != 0) { in main()
|
/external/libdivsufsort/CMakeModules/ |
D | CheckLFS.cmake | 24 # LFS type1: 8 <= sizeof(off_t), fseeko, ftello 27 check_symbol_exists("fseeko" "stdio.h" HAVE_FSEEKO) 32 set(LFS_FSEEK "fseeko")
|
/external/syslinux/utils/ |
D | isohybrid.c | 973 if (fseeko(fp, (off_t) (16 << 11), SEEK_SET)) in main() 979 if (fseeko(fp, (off_t) 17 * 2048, SEEK_SET)) in main() 992 if (fseeko(fp, ((off_t) catoffset) * 2048, SEEK_SET)) in main() 1042 if (fseeko(fp, (((off_t) de_lba) * 2048 + 0x40), SEEK_SET)) in main() 1078 if (fseeko(fp, (off_t) 440, SEEK_SET)) in main() 1102 if (fseeko(fp, (off_t) 0, SEEK_SET)) in main() 1143 if (fseeko(fp, (off_t) 512, SEEK_SET)) in main() 1160 fseeko(fp, (off_t) APM_OFFSET, SEEK_SET); in main() 1189 if (fseeko(fp, (isostat.st_size + padding) - orig_gpt_size, SEEK_SET)) in main()
|
/external/flac/include/share/ |
D | compat.h | 53 #define fseeko _fseeki64 macro 57 #define fseeko fseeko64 macro
|
/external/llvm/test/CodeGen/Thumb/ |
D | 2009-08-20-ISelBug.ll | 35 %9 = call i32 @fseeko(%struct.FILE* %2, i64 %off, i32 0) nounwind ; <i32> [#uses=1] 62 declare i32 @fseeko(%struct.FILE* nocapture, i64, i32) nounwind
|
/external/swiftshader/third_party/LLVM/test/CodeGen/Thumb/ |
D | 2009-08-20-ISelBug.ll | 35 %9 = call i32 @fseeko(%struct.FILE* %2, i64 %off, i32 0) nounwind ; <i32> [#uses=1] 62 declare i32 @fseeko(%struct.FILE* nocapture, i64, i32) nounwind
|
/external/libvpx/libvpx/third_party/libwebm/mkvmuxer/ |
D | mkvwriter.cc | 82 return fseeko(file_, static_cast<off_t>(position), SEEK_SET); in Position()
|
/external/elfutils/tests/ |
D | lfs-symbols | 30 fseeko
|
/external/flac/libFLAC/ |
D | metadata_iterators.c | 520 if(0 != fseeko(iterator->file, iterator->length, SEEK_CUR)) { in FLAC__metadata_simple_iterator_next() 540 if(0 != fseeko(iterator->file, iterator->first_offset, SEEK_SET)) { in FLAC__metadata_simple_iterator_prev() 550 if(0 != fseeko(iterator->file, iterator->length, SEEK_CUR)) { in FLAC__metadata_simple_iterator_prev() 619 if(0 != fseeko(iterator->file, -((int)id_bytes), SEEK_CUR)) { in FLAC__metadata_simple_iterator_get_application_id() 644 …if(0 != fseeko(iterator->file, iterator->offset[iterator->depth] + FLAC__STREAM_METADATA_HEADER_LE… in FLAC__metadata_simple_iterator_get_block() 1442 if(0 != fseeko(f, chain->last_offset, SEEK_SET)) { in chain_rewrite_file_() 2930 if(0 != fseeko(iterator->file, iterator->offset[iterator->depth], SEEK_SET)) { in write_metadata_block_stationary_() 2941 if(0 != fseeko(iterator->file, iterator->offset[iterator->depth], SEEK_SET)) { in write_metadata_block_stationary_() 2953 if(0 != fseeko(iterator->file, iterator->offset[iterator->depth], SEEK_SET)) { in write_metadata_block_stationary_with_padding_() 2984 if(0 != fseeko(iterator->file, iterator->offset[iterator->depth], SEEK_SET)) { in write_metadata_block_stationary_with_padding_() [all …]
|
/external/libvpx/libvpx/third_party/libwebm/mkvparser/ |
D | mkvreader.cc | 122 fseeko(m_file, static_cast<off_t>(offset), SEEK_SET); in Read()
|
/external/llvm/include/llvm/Analysis/ |
D | TargetLibraryInfo.h | 23 #ifdef fseeko 24 #undef fseeko
|
/external/pdfium/third_party/libopenjpeg20/ |
D | opj_includes.h | 66 # define fseek fseeko
|
/external/ImageMagick/MagickCore/ |
D | blob-private.h | 31 # define fseek fseeko
|
/external/zlib/src/ |
D | CMakeLists.txt | 50 # Check for fseeko 52 check_function_exists(fseeko HAVE_FSEEKO)
|
/external/zlib/src/contrib/minizip/ |
D | ioapi.h | 56 #define fseeko64 fseeko
|
D | ioapi.c | 21 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
|
D | minizip.c | 35 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
|
D | miniunz.c | 34 #define FSEEKO_FUNC(stream, offset, origin) fseeko(stream, offset, origin)
|
/external/libpcap/ |
D | cmakeconfig.h.in | 37 /* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ 300 /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
|
D | config.h.in | 37 /* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ 304 /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
|
/external/libedit/src/ |
D | readline.c | 1206 if (fseeko(fp, (off_t)sizeof(buf) * count, SEEK_SET) == in history_truncate_file() 1253 if (fseeko(tp, (off_t)sizeof(buf) * count, SEEK_SET) < 0) { in history_truncate_file() 1271 if (fseeko(fp, (off_t)0, SEEK_SET) == (off_t)-1) { in history_truncate_file() 1276 if (fseeko(tp, (off_t)sizeof(buf) * count + (cp - buf), SEEK_SET) == in history_truncate_file()
|
/external/libmicrohttpd/ |
D | MHD_config.h.in | 56 /* Define to 1 if fseeko (and presumably ftello) exists and is declared. */ 384 /* Define to 1 to make fseeko visible on some hosts (e.g. glibc 2.2). */
|
/external/zlib/src/examples/ |
D | zran.c | 277 ret = fseeko(in, here->in - (here->bits ? 1 : 0), SEEK_SET); in extract()
|