Home
last modified time | relevance | path

Searched refs:feof (Results 1 – 25 of 291) sorted by relevance

12345678910>>...12

/external/llvm-project/clang/test/Analysis/
Dstream-error.c18 clang_analyzer_eval(feof(F)); // expected-warning {{FALSE}} in error_fopen()
30 clang_analyzer_eval(feof(F)); // expected-warning {{FALSE}} in error_freopen()
40 clang_analyzer_eval(feof(F)); // expected-warning {{TRUE}} in stream_error_feof()
43 clang_analyzer_eval(feof(F)); // expected-warning {{FALSE}} in stream_error_feof()
53 clang_analyzer_eval(feof(F)); // expected-warning {{FALSE}} in stream_error_ferror()
56 clang_analyzer_eval(feof(F)); // expected-warning {{FALSE}} in stream_error_ferror()
68 clang_analyzer_eval(feof(F) || ferror(F)); // expected-warning {{FALSE}} in error_fread()
70 clang_analyzer_eval(feof(F) || ferror(F)); // expected-warning {{TRUE}} in error_fread()
71 if (feof(F)) { in error_fread()
74 clang_analyzer_eval(feof(F)); // expected-warning {{TRUE}} in error_fread()
[all …]
Dcxx-method-names.cpp10 void feof(int, int); // stream checker
20 E.feof(0,1); in test()
/external/llvm-project/compiler-rt/test/sanitizer_common/TestCases/Posix/
Dfeof_fileno_ferror.cpp16 assert(!feof(fp) && !ferror(fp)); in main()
21 assert(feof(fp)); in main()
25 assert(!feof(fp) && !ferror(fp)); in main()
40 assert(!feof(fp) && !ferror(fp)); in main()
/external/flac/src/utils/flacdiff/
Dmain.cpp64 else if(*bytes == 0 && feof((FILE*)f_)) in read_callback()
81 return (bool)feof((FILE*)f_); in eof_callback()
169 if(feof((FILE*)f1) && feof((FILE*)f2)) { in get_diff_offset()
173 if(feof((FILE*)f1)) { in get_diff_offset()
177 if(feof((FILE*)f2)) { in get_diff_offset()
/external/clang/test/Analysis/
Dcxx-method-names.cpp10 void feof(int, int); // stream checker
20 E.feof(0,1); in test()
/external/libese/tools/ese_replay/
Dbuffer.c40 if (feof(fp)) in buffer_read_hex()
43 while (!feof(fp)) { in buffer_read_hex()
54 for (; !feof(fp) && b->len < b->size; ++b->len) { in buffer_read_hex()
/external/libopus/src/
Drepacketizer_demo.c124 if (feof(fin)) in main()
139 if (feof(fin)) in main()
152 if (feof(fin)) in main()
165 if (feof(fin)) in main()
/external/autotest/client/profilers/powertop/src/
Dxrandr.c55 if (!file || feof(file)) { in suggest_xrandr_TV_off()
59 while (!feof(file)) { in suggest_xrandr_TV_off()
Dconfig.c48 while (file && !feof(file)) { in read_kernel_config()
76 while (!feof(file)) { in read_kernel_config()
Dwireless.c98 while (!feof(file)) { in check_unused_wiresless_up()
125 while (!feof(file)) { in need_wireless_suggest()
221 while (!feof(file)) { in find_wireless_nic()
/external/libwebm/testing/
Dtest_util.cc58 } while (!std::feof(f1.get()) && !std::feof(f2.get())); in CompareFiles()
60 return std::feof(f1.get()) && std::feof(f2.get()); in CompareFiles()
/external/e2fsprogs/ext2ed/
Dinit.c119 while (!feof (fp)) { in set_struct_descriptors()
121 if (feof (fp)) break; in set_struct_descriptors()
129 if (feof (fp)) break; in set_struct_descriptors()
131 if (feof (fp)) break; in set_struct_descriptors()
596 if (feof (fp)) return (0); in get_next_option()
598 if (feof (fp)) return (0); in get_next_option()
621 while (!feof (fp)) { in check_mounted()
623 if (feof (fp)) break; in check_mounted()
/external/ltp/testcases/kernel/fs/stream/
Dstream05.c140 if (feof(stream) != 0) { in main()
147 if (feof(stream) == 0) { in main()
165 if (feof(stream) != 0) { in main()
/external/speex/libspeexdsp/
Dtestecho.c39 while (!feof(ref_fd) && !feof(echo_fd)) in main()
/external/libvpx/libvpx/
Divfdec.c79 if (!feof(infile)) warn("Failed to read frame size"); in ivf_read_frame()
101 if (!feof(infile)) { in ivf_read_frame()
/external/libaom/libaom/common/
Dobudec.c46 if (len == 0 && feof(f)) { in obudec_read_leb128()
78 if (feof(f) && *bytes_read == 0) { in obudec_read_obu_header()
377 if (feof(f)) { in obudec_read_temporal_unit()
395 if (size == 0 && feof(f)) { in obudec_read_temporal_unit()
462 if (!feof(f)) { in obudec_read_temporal_unit()
Divfdec.c70 if (!feof(infile)) warn("Failed to read frame size"); in ivf_read_frame()
97 if (!feof(infile)) { in ivf_read_frame()
/external/zstd/contrib/pzstd/test/
DRoundTrip.h51 if (!std::feof(sFd) || !std::feof(dFd)) { in check()
/external/mesa3d/src/gallium/drivers/lima/standalone/
Dlima_disasm.c126 } while (!feof(in)); in extract_shader_binary()
128 if (feof(in)) { in extract_shader_binary()
/external/icu/icu4c/source/samples/ucnv/
Dconvsamp.cpp331 while((!feof(f)) && in convsample_05()
345 feof(f)?true:false, /* pass 'flush' when eof */ in convsample_05()
446 while((!feof(f)) && in convsample_06()
917 while((!feof(f)) && in convsample_40()
933 feof(f)?true:false, /* pass 'flush' when eof */ in convsample_40()
1022 while((!feof(f)) && in convsample_46()
1038 feof(f)?true:false, /* pass 'flush' when eof */ in convsample_46()
/external/llvm-project/libcxx/test/std/depr/depr.c.headers/
Dstdio_h.pass.cpp27 #ifdef feof
28 #error feof is defined
169 static_assert((std::is_same<decltype(feof(fp)), int>::value), ""); in main()
/external/libcxx/test/std/depr/depr.c.headers/
Dstdio_h.pass.cpp28 #ifdef feof
29 #error feof is defined
166 static_assert((std::is_same<decltype(feof(fp)), int>::value), ""); in main()
/external/e2fsprogs/intl/
Dlocalealias.c100 # define FEOF(fp) feof (fp)
118 # undef feof
119 # define feof(s) feof_unlocked (s) macro
/external/libdivsufsort/examples/
Dsasearch.c123 (ferror(fp) || !feof(fp)) ? "Cannot read from" : "Unexpected EOF in",
145 (ferror(fp) || !feof(fp)) ? "Cannot read from" : "Unexpected EOF in",
/external/sfntly/cpp/src/sfntly/port/
Dfile_input_stream.cc71 if (feof(file_)) { in Read()
95 if (feof(file_)) { in Read()

12345678910>>...12