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

1 2 3 4 5 6 7 8 91011>>

  /bionic/libc/upstream-openbsd/lib/libc/stdio/
rewind.c 40 (void) fseek(fp, 0L, SEEK_SET);
  /external/clang/test/Analysis/
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}}
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);
  /frameworks/av/cmds/stagefright/
WaveWriter.h 39 fseek(mFile, 40, SEEK_SET);
42 fseek(mFile, 4, SEEK_SET);
  /external/chromium_org/third_party/libvpx/source/libvpx/third_party/libwebm/
mkvreader.cpp 59 fseek(m_file, 0L, SEEK_END);
73 fseek(m_file, 0L, SEEK_SET);
121 fseek(m_file, offset, SEEK_SET);
  /external/deqp/framework/common/
tcuResource.cpp 77 fseek(m_file, 0, SEEK_END);
79 fseek(m_file, curPos, SEEK_SET);
90 fseek(m_file, (size_t)position, SEEK_SET);
  /external/libvpx/libvpx/third_party/libwebm/
mkvreader.cpp 66 fseek(m_file, 0L, SEEK_END);
80 fseek(m_file, 0L, SEEK_SET);
132 fseek(m_file, offset, SEEK_SET);
  /external/pdfium/core/src/fxcodec/fx_libopenjpeg/libopenjpeg20/
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)
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/third_party/libwebm/
mkvreader.cpp 54 fseek(m_file, 0L, SEEK_END);
65 fseek(m_file, 0L, SEEK_SET);
117 fseek(m_file, offset, SEEK_SET);
  /external/chromium_org/third_party/sfntly/cpp/src/sfntly/port/
file_input_stream.cc 121 fseek(file_, position_, SEEK_SET);
125 fseek(file_, (size_t)skip_count, SEEK_CUR);
144 fseek(file_, position_ - unread_count, SEEK_SET);
147 fseek(file_, position_ - unread_count, SEEK_SET);
165 fseek(file_, 0, SEEK_END);
167 fseek(file_, 0, SEEK_SET);
  /external/sfntly/cpp/src/sfntly/port/
file_input_stream.cc 119 fseek(file_, position_, SEEK_SET);
123 fseek(file_, (size_t)skip_count, SEEK_CUR);
142 fseek(file_, position_ - unread_count, SEEK_SET);
145 fseek(file_, position_ - unread_count, SEEK_SET);
163 fseek(file_, 0, SEEK_END);
165 fseek(file_, 0, SEEK_SET);
  /external/chromium_org/third_party/icu/source/samples/layout/
UnicodeReader.cpp 46 fseek(f, 0, SEEK_END);
49 fseek(f, 0, SEEK_SET);
82 fseek(f, signatureLength, SEEK_SET);
  /external/icu/icu4c/source/samples/layout/
UnicodeReader.cpp 46 fseek(f, 0, SEEK_END);
49 fseek(f, 0, SEEK_SET);
82 fseek(f, signatureLength, SEEK_SET);
  /bionic/libc/bionic/
pututline.c 48 if (fseek(f, i - sizeof(struct utmp), SEEK_SET) < 0)
  /external/compiler-rt/SDKs/linux/usr/include/
stdio.h 42 extern int fseek(FILE *, long, int);
  /external/ltrace/testsuite/ltrace.minor/
count-record.c 34 fseek (fp, 0, SEEK_CUR);
  /external/ceres-solver/internal/ceres/
file.cc 60 fseek(file_descriptor, 0L, SEEK_END);
65 fseek(file_descriptor, 0L, SEEK_SET);
  /external/chromium_org/third_party/harfbuzz-ng/src/
test-size-params.cc 70 fseek (f, 0, SEEK_END);
72 fseek (f, 0, SEEK_SET);
test-would-substitute.cc 74 fseek (f, 0, SEEK_END);
76 fseek (f, 0, SEEK_SET);
  /external/chromium_org/third_party/sfntly/cpp/src/sample/subsetter/
subset_util.cc 51 fseek(input_file, 0, SEEK_END);
53 fseek(input_file, 0, SEEK_SET);
  /external/chromium_org/third_party/skia/experimental/FileReaderApp/
ReaderView.cpp 41 fseek(f, 0, SEEK_END);
48 fseek(f, fFilePos, SEEK_SET);
  /external/chromium_org/third_party/webrtc/video_engine/
vie_file_image.cc 36 if (fseek(image_file, 0, SEEK_END) != 0) {
46 if (fseek(image_file, 0, SEEK_SET) != 0) {
  /external/harfbuzz_ng/src/
test-size-params.cc 70 fseek (f, 0, SEEK_END);
72 fseek (f, 0, SEEK_SET);
test-would-substitute.cc 74 fseek (f, 0, SEEK_END);
76 fseek (f, 0, SEEK_SET);
  /external/sfntly/cpp/src/sample/subsetter/
subset_util.cc 51 fseek(input_file, 0, SEEK_END);
53 fseek(input_file, 0, SEEK_SET);
  /external/skia/experimental/FileReaderApp/
ReaderView.cpp 41 fseek(f, 0, SEEK_END);
48 fseek(f, fFilePos, SEEK_SET);

Completed in 765 milliseconds

1 2 3 4 5 6 7 8 91011>>