HomeSort by relevance Sort by last modified time
    Searched refs:fseek (Results 26 - 50 of 436) sorted by null

12 3 4 5 6 7 8 91011>>

  /toolchain/binutils/binutils-2.25/include/aout/
encap.h 96 fseek ((f), -sizeof (short), 1), \
102 #define HEADER_SEEK(f) (fseek ((f), HEADER_OFFSET((f)), 1))
  /external/skia/src/ports/
SkOSFile_stdio.cpp 100 fseek(f, 0, SEEK_END); // go to the end
106 fseek(f, curr, SEEK_SET); // go back to our prev location
124 int err = fseek(f, (long)byteCount, SEEK_CUR);
126 SkDEBUGF(("sk_fread: fseek(%d) tell:%d failed with feof:%d ferror:%d returned:%d\n",
155 int err = fseek(f, (long)byteCount, SEEK_SET);
160 int err = fseek(f, byteCount, SEEK_CUR);
  /bionic/tools/relocation_packer/src/
elf_file_unittest.cc 59 ASSERT_EQ(0, fseek(temporary, 0, SEEK_SET));
84 ASSERT_EQ(0, fseek(first, 0, SEEK_SET));
85 ASSERT_EQ(0, fseek(second, 0, SEEK_SET));
125 ASSERT_EQ(0, fseek(relocs_so, EI_CLASS, SEEK_SET))
129 ASSERT_EQ(0, fseek(relocs_so, 0, SEEK_SET));
161 ASSERT_EQ(0, fseek(packed_relocs_so, EI_CLASS, SEEK_SET))
165 fseek(packed_relocs_so, 0, SEEK_SET);
  /external/ltrace/
memstream.c 48 if (fseek(memstream->stream, 0, SEEK_END) < 0) {
  /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);
test_font_utils.cc 74 fseek(input_file, 0, SEEK_END);
76 fseek(input_file, 0, SEEK_SET);
  /external/v8/tools/
shell-utils.h 48 fseek(file, 0, SEEK_END);
  /external/webrtc/webrtc/modules/video_processing/test/
readYUV420file.m 16 fseek(fid,0,'eof'); % move to end of file
18 fseek(fid,0,'bof'); % rewind to start
  /frameworks/compile/libbcc/bcinfo/Wrap/
file_wrapper_input.cpp 63 return fseek(_file, (long) pos, SEEK_SET) == 0;
  /external/harfbuzz_ng/src/
test-buffer-serialize.cc 72 fseek (f, 0, SEEK_END);
74 fseek (f, 0, SEEK_SET);
test.cc 73 fseek (f, 0, SEEK_END);
75 fseek (f, 0, SEEK_SET);
  /external/opencv3/3rdparty/libjpeg/
jmemansi.c 101 if (fseek(info->temp_file, file_offset, SEEK_SET))
114 if (fseek(info->temp_file, file_offset, SEEK_SET))
  /external/webrtc/webrtc/modules/remote_bitrate_estimator/test/
bwe_test_fileutils.cc 37 fseek(file_, 0, SEEK_END);
39 fseek(file_, current_pos, SEEK_SET);
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/perftest/
perftest.h 84 fseek(fp, 0, SEEK_END);
86 fseek(fp, 0, SEEK_SET);
  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
filestreamtest.cpp 44 fseek(fp, 0, SEEK_END);
46 fseek(fp, 0, SEEK_SET);
  /system/core/libcutils/
open_memstream.c 31 * in "*sizep". (The behavior w.r.t. fseek() is not clearly defined.
324 fseek(stream, -1, SEEK_CUR); /* broken in glibc; can use {13,SEEK_SET} */
326 fseek(stream, 1022, SEEK_SET);
343 fseek(stream, 5000, SEEK_SET);
344 fseek(stream, 4096, SEEK_SET);
345 fseek(stream, -1, SEEK_SET); /* should have no effect */
  /system/extras/simpleperf/
record_file_writer.cpp 75 if (fseek(record_fp_, sizeof(FileHeader), SEEK_SET) == -1) {
137 if (fseek(record_fp_, 0, SEEK_END) == -1) {
138 PLOG(ERROR) << "fseek() failed";
157 if (fseek(record_fp_, data_section_offset_ + data_section_size_, SEEK_SET) == -1) {
158 PLOG(ERROR) << "fseek() failed";
243 if (fseek(record_fp_, feature_offset + current_feature_index_ * sizeof(SectionDesc), SEEK_SET) ==
245 PLOG(ERROR) << "fseek() failed";
272 if (fseek(record_fp_, 0, SEEK_SET) == -1) {
  /build/tools/ziptime/
ZipFile.cpp 81 fseek(mZipFp, 0, SEEK_END);
107 if (fseek(mZipFp, seekStart, SEEK_SET) != 0) {
155 if (fseek(mZipFp, mEOCD.mCentralDirOffset, SEEK_SET) != 0) {
  /external/e2fsprogs/ext2ed/
disk.c 15 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/sfntly/cpp/src/sample/chromium/
chrome_subsetter.cc 53 fseek(input_file, 0, SEEK_END);
55 fseek(input_file, 0, SEEK_SET);
  /external/webrtc/webrtc/modules/audio_coding/neteq/test/delay_tool/
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/voice_engine/test/auto_test/standard/
file_before_streaming_test.cc 67 EXPECT_EQ(0, fseek(output_file, sizeof(output_value) *
86 ASSERT_EQ(0, fseek(output_file, 0, SEEK_END));
  /hardware/intel/img/psb_video/fw/topazhp/
fwinfo.c 146 // fseek (fp, 0, SEEK_SET);
164 fseek(fp, topaz_fw_table[iter].header.text_size + topaz_fw_table[iter].header.data_size, SEEK_CUR);
202 // fseek (fp, 0, SEEK_SET);
213 fseek(fp, lseek, SEEK_SET);
  /hardware/intel/img/psb_video/fw/topazsc/
fwinfo.c 146 // fseek (fp, 0, SEEK_SET);
164 fseek(fp, topaz_fw_table[iter].header.text_size + topaz_fw_table[iter].header.data_size, SEEK_CUR);
202 // fseek (fp, 0, SEEK_SET);
213 fseek(fp, lseek, SEEK_SET);
  /ndk/sources/cxx-stl/gabi++/include/
cstdio 60 using ::fseek;

Completed in 1451 milliseconds

12 3 4 5 6 7 8 91011>>