/external/clang/test/Analysis/ |
D | stream.c | 12 extern int fseek (FILE *__stream, long int __off, int __whence); 25 fseek(p, 1, SEEK_SET); // expected-warning {{Stream pointer might be NULL}} in f2() 45 fseek(p, 1, SEEK_SET); // no-warning in f5() 46 …fseek(p, 1, 3); // expected-warning {{The whence argument to fseek() should be SEEK_SET, SEEK_END,… in f5() 83 fseek(stream, offset, whence); in pr8081()
|
/external/sfntly/cpp/src/sfntly/port/ |
D | file_input_stream.cc | 119 fseek(file_, position_, SEEK_SET); in Skip() 123 fseek(file_, (size_t)skip_count, SEEK_CUR); in Skip() 142 fseek(file_, position_ - unread_count, SEEK_SET); in Unread() 145 fseek(file_, position_ - unread_count, SEEK_SET); in Unread() 163 fseek(file_, 0, SEEK_END); in Open() 165 fseek(file_, 0, SEEK_SET); in Open()
|
/external/tpm2/ |
D | NVMem.c | 78 fseek(s_NVFile, 0, SEEK_END); in _plat__NVEnable() 89 fseek(s_NVFile, 0, SEEK_END); in _plat__NVEnable() 96 fseek(s_NVFile, 0, SEEK_END); in _plat__NVEnable() 99 fseek(s_NVFile, 0, SEEK_SET); in _plat__NVEnable() 260 fseek(s_NVFile, 0, SEEK_SET); in _plat__NvCommit()
|
/external/skia/src/ports/ |
D | SkOSFile_stdio.cpp | 100 fseek(f, 0, SEEK_END); // go to the end in sk_fgetsize() 106 fseek(f, curr, SEEK_SET); // go back to our prev location in sk_fgetsize() 124 int err = fseek(f, (long)byteCount, SEEK_CUR); in sk_fread() 155 int err = fseek(f, (long)byteCount, SEEK_SET); in sk_fseek() 160 int err = fseek(f, byteCount, SEEK_CUR); in sk_fmove()
|
/external/dng_sdk/source/ |
D | dng_file_stream.cpp | 74 if (fseek (fFile, 0, SEEK_END) != 0) in DoGetLength() 92 if (fseek (fFile, (long) offset, SEEK_SET) != 0) in DoRead() 117 if (fseek (fFile, (uint32) offset, SEEK_SET) != 0) in DoWrite()
|
/external/deqp/framework/common/ |
D | tcuResource.cpp | 70 fseek(m_file, 0, SEEK_END); in getSize() 72 fseek(m_file, curPos, SEEK_SET); in getSize() 83 fseek(m_file, (size_t)position, SEEK_SET); in setPosition()
|
/external/pdfium/third_party/libopenjpeg20/ |
D | opj_includes.h | 64 #if defined(OPJ_HAVE_FSEEKO) && !defined(fseek) 65 # define fseek fseeko macro 84 # define OPJ_FSEEK(stream,offset,whence) fseek(stream,offset,whence)
|
/external/libvpx/libvpx/third_party/libwebm/ |
D | mkvreader.cpp | 59 fseek(m_file, 0L, SEEK_END); in GetFileSize() 73 fseek(m_file, 0L, SEEK_SET); in GetFileSize() 121 fseek(m_file, offset, SEEK_SET); in Read()
|
/external/sfntly/cpp/src/test/ |
D | file_io_test.cc | 36 fseek(file_handle, 0, SEEK_END); in TestFileInputStream() 38 fseek(file_handle, 0, SEEK_SET); in TestFileInputStream() 97 fseek(file_handle, 0, SEEK_END); in TestFontInputStreamBasic() 99 fseek(file_handle, 0, SEEK_SET); in TestFontInputStreamBasic()
|
/external/icu/icu4c/source/samples/layout/ |
D | UnicodeReader.cpp | 46 fseek(f, 0, SEEK_END); in readFile() 49 fseek(f, 0, SEEK_SET); in readFile() 82 fseek(f, signatureLength, SEEK_SET); in readFile()
|
/external/sonivox/arm-wt-22k/host_src/ |
D | eas_wave.c | 251 if (fseek(wFile->file, 0L, SEEK_SET) == 0) in WaveFileClose() 366 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET); in WaveFileOpen() 378 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET); in WaveFileOpen() 393 fseek(wFile->file, startChunkPos + (EAS_I32) chunk.size, SEEK_SET); in WaveFileOpen()
|
/external/ceres-solver/internal/ceres/ |
D | file.cc | 60 fseek(file_descriptor, 0L, SEEK_END); in ReadFileToStringOrDie() 65 fseek(file_descriptor, 0L, SEEK_SET); in ReadFileToStringOrDie()
|
/external/webrtc/webrtc/modules/audio_coding/neteq/test/delay_tool/ |
D | parse_delay_file.m | 20 fseek(fid, -12, 'eof'); 26 fseek(fid,-12-4, 'eof'); 28 fseek(fid, start_pos, 'bof'); 68 fseek(fid, fp - ftell(fid) + ...
|
/external/webrtc/webrtc/modules/audio_coding/neteq/tools/ |
D | input_audio_file.cc | 50 RTC_CHECK_EQ(0, fseek(fp_, 0, SEEK_END)); // Move to end of file. in Seek() 59 RTC_CHECK_EQ(0, fseek(fp_, new_pos, SEEK_SET)); in Seek()
|
/external/compiler-rt/test/msan/Linux/ |
D | fopencookie.cc | 54 fseek(f, 100, SEEK_SET); in main() 61 fseek(f, 100, SEEK_SET); in main()
|
/external/harfbuzz_ng/src/ |
D | test-size-params.cc | 70 fseek (f, 0, SEEK_END); in main() 72 fseek (f, 0, SEEK_SET); in main()
|
D | test-would-substitute.cc | 74 fseek (f, 0, SEEK_END); in main() 76 fseek (f, 0, SEEK_SET); in main()
|
D | test-buffer-serialize.cc | 72 fseek (f, 0, SEEK_END); in main() 74 fseek (f, 0, SEEK_SET); in main()
|
D | test.cc | 73 fseek (f, 0, SEEK_END); in main() 75 fseek (f, 0, SEEK_SET); in main()
|
/external/skia/experimental/FileReaderApp/ |
D | ReaderView.cpp | 41 fseek(f, 0, SEEK_END); in draw() 48 fseek(f, fFilePos, SEEK_SET); in draw()
|
/external/sfntly/cpp/src/sample/subsetter/ |
D | subset_util.cc | 51 fseek(input_file, 0, SEEK_END); in Subset() 53 fseek(input_file, 0, SEEK_SET); in Subset()
|
/external/webrtc/webrtc/modules/remote_bitrate_estimator/test/ |
D | bwe_test_fileutils.cc | 37 fseek(file_, 0, SEEK_END); in IsAtEnd() 39 fseek(file_, current_pos, SEEK_SET); in IsAtEnd()
|
/external/webrtc/webrtc/modules/video_processing/test/ |
D | readYUV420file.m | 16 fseek(fid,0,'eof'); % move to end of file 18 fseek(fid,0,'bof'); % rewind to start
|
/external/opencv3/3rdparty/libjpeg/ |
D | jmemansi.c | 101 if (fseek(info->temp_file, file_offset, SEEK_SET)) in read_backing_store() 114 if (fseek(info->temp_file, file_offset, SEEK_SET)) in write_backing_store()
|
/external/bison/lib/ |
D | stdio.in.h | 450 # undef fseek 454 # undef fseek 455 # define fseek rpl_fseek 457 _GL_FUNCDECL_RPL (fseek, int, (FILE *fp, long offset, int whence) 459 _GL_CXXALIAS_RPL (fseek, int, (FILE *fp, long offset, int whence)); 461 _GL_CXXALIAS_SYS (fseek, int, (FILE *fp, long offset, int whence)); 463 _GL_CXXALIASWARN (fseek); 469 # undef fseek 491 # undef fseek 503 _GL_WARN_ON_USE (fseek, "fseek cannot handle files larger than 4 GB "
|