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

1 2 3 4 5 6 7 8 91011>>

  /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);
  /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/chromium_org/third_party/skia/src/ports/
SkOSFile_stdio.cpp 57 ::fseek((FILE*)f, 0, SEEK_END); // go to the end
63 ::fseek((FILE*)f, curr, SEEK_SET); // go back to our prev location
81 int err = ::fseek((FILE*)f, (long)byteCount, SEEK_CUR);
83 SkDEBUGF(("sk_fread: fseek(%d) tell:%d failed with feof:%d ferror:%d returned:%d\n",
104 int err = ::fseek((FILE*)f, (long)byteCount, SEEK_SET);
109 int err = ::fseek((FILE*)f, byteCount, SEEK_CUR);
  /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/skia/src/ports/
SkOSFile_stdio.cpp 57 ::fseek((FILE*)f, 0, SEEK_END); // go to the end
63 ::fseek((FILE*)f, curr, SEEK_SET); // go back to our prev location
81 int err = ::fseek((FILE*)f, (long)byteCount, SEEK_CUR);
83 SkDEBUGF(("sk_fread: fseek(%d) tell:%d failed with feof:%d ferror:%d returned:%d\n",
104 int err = ::fseek((FILE*)f, (long)byteCount, SEEK_SET);
109 int err = ::fseek((FILE*)f, byteCount, SEEK_CUR);
  /external/chromium_org/third_party/openssl/openssl/crypto/bio/
bio_lcl.h 17 #define UP_fseek fseek
  /external/openssl/crypto/bio/
bio_lcl.h 17 #define UP_fseek fseek
  /external/chromium_org/third_party/webrtc/modules/video_processing/main/test/unit_test/
readYUV420file.m 16 fseek(fid,0,'eof'); % move to end of file
18 fseek(fid,0,'bof'); % rewind to start
  /frameworks/av/cmds/stagefright/
WaveWriter.h 39 fseek(mFile, 40, SEEK_SET);
42 fseek(mFile, 4, SEEK_SET);
  /hardware/intel/img/psb_video/fw/msvdx/
msvdx_bin.c 113 fseek(ptr, LINKED_LIST_SIZE, SEEK_SET);
120 fseek(ptr, LINKED_LIST_SIZE + fw_DE3.DataOffset + sizeof(fw), SEEK_SET);
148 fseek(ptr, LINKED_LIST_SIZE, SEEK_SET);
155 fseek(ptr, LINKED_LIST_SIZE + fw_DE3.DataOffset + sizeof(fw), SEEK_SET);
190 fseek(ptr, LINKED_LIST_SIZE + FIP_SIZE, SEEK_SET);
197 //fseek(ptr, LINKED_LIST_SIZE + fw_DE3.DataOffset + sizeof(fw), SEEK_SET);
198 fseek(ptr, FIP_SIZE + LINKED_LIST_SIZE + fw_DE3.DataOffset, SEEK_SET);
228 fseek(ptr, LINKED_LIST_SIZE + FIP_SIZE, SEEK_SET);
234 fseek(ptr, FIP_SIZE + LINKED_LIST_SIZE + fw_DE3.DataOffset, 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/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);
  /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/test/
file_io_test.cc 36 fseek(file_handle, 0, SEEK_END);
38 fseek(file_handle, 0, SEEK_SET);
97 fseek(file_handle, 0, SEEK_END);
99 fseek(file_handle, 0, SEEK_SET);
  /external/sfntly/cpp/src/test/
file_io_test.cc 36 fseek(file_handle, 0, SEEK_END);
38 fseek(file_handle, 0, SEEK_SET);
97 fseek(file_handle, 0, SEEK_END);
99 fseek(file_handle, 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/skia/experimental/FileReaderApp/
ReaderView.cpp 41 fseek(f, 0, SEEK_END);
48 fseek(f, fFilePos, SEEK_SET);
  /external/linux-tools-perf/perf-3.12.0/tools/perf/util/
symbol-minimal.c 105 fseek(fp, 0, SEEK_SET);
125 fseek(fp, ehdr.e_phoff, SEEK_SET);
147 fseek(fp, phdr->p_offset, SEEK_SET);
174 fseek(fp, ehdr.e_phoff, SEEK_SET);
196 fseek(fp, phdr->p_offset, SEEK_SET);
  /external/chromium_org/third_party/icu/source/tools/toolutil/
filestrm.c 170 fseek((FILE*)fileStream, 0, SEEK_END);
172 fseek((FILE*)fileStream, savedPos, SEEK_SET);
199 fseek((FILE*)fileStream, 99999, SEEK_SET);
  /external/chromium_org/third_party/sqlite/src/tool/
showjournal.c 33 fseek(db, iOfst, SEEK_SET);
121 fseek(db, 0, SEEK_END);
124 fseek(db, 0, SEEK_SET);
  /external/chromium_org/tools/relocation_packer/src/
elf_file_unittest.cc 66 ASSERT_EQ(0, fseek(temporary, 0, SEEK_SET));
87 ASSERT_EQ(0, fseek(first, 0, SEEK_SET));
88 ASSERT_EQ(0, fseek(second, 0, 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/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);
  /external/icu/icu4c/source/tools/toolutil/
filestrm.c 170 fseek((FILE*)fileStream, 0, SEEK_END);
172 fseek((FILE*)fileStream, savedPos, SEEK_SET);
199 fseek((FILE*)fileStream, 99999, SEEK_SET);

Completed in 1589 milliseconds

1 2 3 4 5 6 7 8 91011>>