Searched refs:fseek (Results 1 - 25 of 151) sorted by relevance

1234567

/external/clang/test/Analysis/
H A Dstream.c12 extern int fseek (FILE *__stream, long int __off, int __whence);
25 fseek(p, 1, SEEK_SET); // expected-warning {{Stream pointer might be NULL}}
45 fseek(p, 1, SEEK_SET); // no-warning
46 fseek(p, 1, 3); // expected-warning {{The whence argument to fseek() should be SEEK_SET, SEEK_END, or SEEK_CUR}}
83 fseek(stream, offset, whence);
/external/icu4c/samples/layout/
H A DUnicodeReader.cpp46 fseek(f, 0, SEEK_END);
49 fseek(f, 0, SEEK_SET);
82 fseek(f, signatureLength, SEEK_SET);
/external/skia/src/ports/
H A DSkOSFile_stdio.cpp40 ::fseek((FILE*)f, 0, SEEK_END); // go to the end
42 ::fseek((FILE*)f, (long)curr, SEEK_SET); // go back to our prev loc
50 // ::fseek((FILE*)f, 0, SEEK_SET);
64 // ::fseek((FILE*)f, (long)(curr + byteCount), SEEK_SET);
65 int err = ::fseek((FILE*)f, (long)byteCount, SEEK_CUR);
67 SkDEBUGF(("sk_fread: fseek(%d) tell:%d failed with feof:%d ferror:%d returned:%d\n",
/external/quake/quake/src/QW/client/
H A Dsys_null.c18 fseek (f, 0, SEEK_END);
20 fseek (f, pos, SEEK_SET);
/external/quake/quake/src/WinQuake/
H A Dsys_null.cpp58 fseek (f, 0, SEEK_END);
60 fseek (f, pos, SEEK_SET);
107 fseek (sys_handles[handle], position, SEEK_SET);
H A Dsys_wind.cpp62 fseek (f, 0, SEEK_END);
64 fseek (f, pos, SEEK_SET);
111 fseek (sys_handles[handle], position, SEEK_SET);
/external/openssl/crypto/bio/
H A Dbio_lcl.h17 #define UP_fseek fseek
/external/chromium/net/tools/dnssec_chain_verify/
H A Ddnssec_chain_verify.cc50 fseek(infile, 0, SEEK_END);
52 fseek(infile, 0, SEEK_SET);
/external/jpeg/
H A Djmemansi.c101 if (fseek(info->temp_file, file_offset, SEEK_SET))
114 if (fseek(info->temp_file, file_offset, SEEK_SET))
H A Djmem-android.c103 if (fseek(info->temp_file, file_offset, SEEK_SET))
116 if (fseek(info->temp_file, file_offset, SEEK_SET))
H A Djmemname.c208 if (fseek(info->temp_file, file_offset, SEEK_SET))
221 if (fseek(info->temp_file, file_offset, SEEK_SET))
/external/qemu/distrib/jpeg-6b/
H A Djmemansi.c101 if (fseek(info->temp_file, file_offset, SEEK_SET))
114 if (fseek(info->temp_file, file_offset, SEEK_SET))
H A Djmem-android.c103 if (fseek(info->temp_file, file_offset, SEEK_SET))
116 if (fseek(info->temp_file, file_offset, SEEK_SET))
H A Djmemname.c208 if (fseek(info->temp_file, file_offset, SEEK_SET))
221 if (fseek(info->temp_file, file_offset, SEEK_SET))
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_store_file_unittest.cc114 EXPECT_EQ(fseek(file.get(), kOffset, SEEK_SET), 0);
119 EXPECT_EQ(fseek(file.get(), kOffset, SEEK_SET), 0);
138 EXPECT_EQ(fseek(file.get(), kAddChunkCountOffset, SEEK_SET), 0);
/external/e2fsprogs/ext2ed/
H A Ddisk.c15 be able to support ext2 filesystems up to 4 TB. Currently, due to the standard fseek usage, we can't handle
60 if ( (fseek (device_handle,offset,SEEK_SET))==-1) { /* Seek to the required offset */
116 if ( (fseek (device_handle,offset,SEEK_SET))==-1) {
/external/webp/examples/
H A Ddwebp.c76 fseek(in, 0, SEEK_END);
78 fseek(in, 0, SEEK_SET);
/external/freetype/include/freetype/config/
H A Dftstdlib.h107 #define ft_fseek fseek
/external/oprofile/libutil++/
H A Dbfd_spu_support.cpp72 fseek(my_stream->stream, my_stream->spu_offset + offset,
/external/sonivox/arm-fm-22k/host_src/
H A Deas_wave.c251 if (fseek(wFile->file, 0L, SEEK_SET) == 0)
366 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET);
378 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET);
393 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET);
/external/sonivox/arm-hybrid-22k/host_src/
H A Deas_wave.c251 if (fseek(wFile->file, 0L, SEEK_SET) == 0)
366 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET);
378 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET);
393 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET);
/external/sonivox/arm-wt-22k/host_src/
H A Deas_wave.c251 if (fseek(wFile->file, 0L, SEEK_SET) == 0)
366 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET);
378 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET);
393 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET);
/external/icu4c/tools/toolutil/
H A Dfilestrm.c170 fseek((FILE*)fileStream, 0, SEEK_END);
172 fseek((FILE*)fileStream, savedPos, SEEK_SET);
199 fseek((FILE*)fileStream, 99999, SEEK_SET);
/external/tinyalsa/
H A Dtinycap.c145 fseek(file, sizeof(struct wav_header), SEEK_SET);
156 fseek(file, 0, SEEK_SET);
H A Dtinyplay.c105 fseek(file, chunk_header.sz - sizeof(chunk_fmt), SEEK_CUR);
113 fseek(file, chunk_header.sz, SEEK_CUR);

Completed in 763 milliseconds

1234567