Searched refs:eof (Results 1 - 25 of 195) sorted by relevance

12345678

/freebsd-12-stable/contrib/netbsd-tests/usr.bin/m4/
H A Dt_m4.sh28 atf_test_case eof
49 atf_add_test_case eof
/freebsd-12-stable/contrib/opie/libopie/
H A Dreadpass.c30 mode, eat random other control characters. Added eof handling.
82 char eof[4]; local
86 memset(eof, 0, sizeof(eof));
174 eof[0] = CONTROL('D');
177 char *e = eof;
189 char *e = eof;
215 eof[0] = CONTROL('D');
216 eof[1] = CONTROL('Z');
243 e = eof;
[all...]
/freebsd-12-stable/contrib/libstdc++/src/
H A Dstreambuf.cc47 while (!traits_type::eq_int_type(__c, traits_type::eof()))
65 if (traits_type::eq_int_type(__c, traits_type::eof()))
87 while (!traits_type::eq_int_type(__c, traits_type::eof()))
105 if (traits_type::eq_int_type(__c, traits_type::eof()))
/freebsd-12-stable/sys/vm/
H A Dvnode_pager.h54 off_t eof, int lpos);
/freebsd-12-stable/usr.sbin/cron/lib/
H A Dentry.c86 /* return NULL if eof or syntax error occurs;
226 goto eof;
234 goto eof;
244 goto eof;
254 goto eof;
266 goto eof;
276 goto eof;
288 goto eof;
315 goto eof;
331 goto eof;
[all...]
/freebsd-12-stable/contrib/libstdc++/include/ext/
H A Dstdio_sync_filebuf.h72 : _M_file(__f), _M_unget_buf(traits_type::eof())
111 pbackfail(int_type __c = traits_type::eof())
114 const int_type __eof = traits_type::eof();
136 overflow(int_type __c = traits_type::eof())
139 if (traits_type::eq_int_type(__c, traits_type::eof()))
142 __ret = traits_type::eof();
210 _M_unget_buf = traits_type::eof();
240 const int_type __eof = traits_type::eof();
253 _M_unget_buf = traits_type::eof();
263 const int_type __eof = traits_type::eof();
[all...]
/freebsd-12-stable/usr.bin/cmp/
H A Dspecial.c74 goto eof;
77 goto eof;
102 eof: if (ferror(fp1))
/freebsd-12-stable/sys/contrib/octeon-sdk/
H A Dcvmx-zip.h129 uint64_t eof : 1; // decompression only member in struct:__anon11492::__anon11493
133 uint64_t eof : 1; // decompression only member in struct:__anon11492::__anon11493
161 uint64_t eof : 1; member in struct:__anon11494::__anon11495
175 uint64_t eof : 1;
/freebsd-12-stable/usr.bin/random/
H A Drandomize_fd.c101 int bufleft, eof, fndstr, ret; local
107 bufleft = eof = fndstr = numnode = 0;
117 while (!eof) {
124 eof++;
136 if (!eof) {
144 eof++;
158 if (!eof) {
163 eof++;
176 (eof && i == buflen - 1)) {
/freebsd-12-stable/contrib/libstdc++/include/bits/
H A Dstreambuf_iterator.h86 // returns traits_type::eof()), the iterator becomes equal to
96 : _M_sbuf(0), _M_c(traits_type::eof()) { }
100 : _M_sbuf(__s.rdbuf()), _M_c(traits_type::eof()) { }
104 : _M_sbuf(__s), _M_c(traits_type::eof()) { }
132 _M_c = traits_type::eof();
149 _M_c = traits_type::eof();
170 const int_type __eof = traits_type::eof();
188 const int_type __eof = traits_type::eof();
244 _Traits::eq_int_type(_M_sbuf->sputc(__c), _Traits::eof()))
337 while (!traits_type::eq_int_type(__c, traits_type::eof()))
[all...]
H A Dchar_traits.h76 * right, but the int_type and state_type typedefs, and the eof()
138 eof() function in struct:char_traits
143 { return !eq_int_type(__c, eof()) ? __c : to_int_type(char_type()); }
280 // To keep both the byte 0xff and the eof symbol 0xffffffff
291 eof() { return static_cast<int_type>(EOF); } function in struct:char_traits
295 { return (__c == eof()) ? 0 : __c; }
357 eof() { return static_cast<int_type>(WEOF); } function in struct:char_traits
361 { return eq_int_type(__c, eof()) ? 0 : __c; }
/freebsd-12-stable/contrib/atf/atf-c++/detail/
H A Dtext.hpp141 if (!ss.eof() || (ss.eof() && (ss.fail() || ss.bad())))
/freebsd-12-stable/contrib/ntp/sntp/libevent/test/
H A DMakefile.nmake25 OTHER_OBJS=test-init.obj test-eof.obj test-closed.obj test-weof.obj test-time.obj \
31 test-init.exe test-eof.exe test-closed.exe test-weof.exe test-time.exe \
48 test-eof.exe: test-eof.obj
49 $(CC) $(CFLAGS) $(LIBS) test-eof.obj
/freebsd-12-stable/contrib/libevent/test/
H A DMakefile.nmake25 OTHER_OBJS=test-init.obj test-eof.obj test-closed.obj test-weof.obj test-time.obj \
31 test-init.exe test-eof.exe test-closed.exe test-weof.exe test-time.exe \
48 test-eof.exe: test-eof.obj
49 $(CC) $(CFLAGS) $(LIBS) test-eof.obj
/freebsd-12-stable/crypto/openssl/crypto/evp/
H A Dencode.c306 int seof = 0, eof = 0, rv = -1, ret = 0, i, v, tmp, n, decoded_len; local
314 eof++;
316 eof++;
339 eof++;
340 } else if (eof > 0 && B64_BASE64(v)) {
346 if (eof > 2) {
374 if (decoded_len < 0 || eof > decoded_len) {
378 ret += decoded_len - eof;
379 out += decoded_len - eof;
393 if (decoded_len < 0 || eof > decoded_le
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteMacros.cpp49 assert(CurTok < RawTokens.size() && "Overran eof!");
84 } while (RawTok.isNot(tok::eof));
113 while (RawTok.isNot(tok::eof) || PPTok.isNot(tok::eof)) {
146 while (!RawTok.isAtStartOfLine() && RawTok.isNot(tok::eof))
/freebsd-12-stable/contrib/nvi/common/
H A Ddelete.c45 int eof, rval; local
71 eof = tm->cno != ENTIRE_LINE && tm->cno >= len ? 1 : 0;
73 eof = 1;
74 if (eof) {
/freebsd-12-stable/contrib/llvm-project/clang/lib/Lex/
H A DMacroArgs.cpp110 for (; ArgPtr->isNot(tok::eof); ++ArgPtr)
129 if (Result->is(tok::eof))
141 return getPreExpArgument(VariadicArgIndex, PP).front().isNot(tok::eof);
150 for (; ArgTok->isNot(tok::eof); ++ArgTok)
189 } while (Result.back().isNot(tok::eof));
223 for (; ArgToks->isNot(tok::eof); ++ArgToks) {
/freebsd-12-stable/contrib/libstdc++/include/std/
H A Dstd_streambuf.h289 * @return The next character, or eof.
292 * @c traits::eof(), so does this function. Otherwise, @c sgetc().
297 int_type __ret = traits_type::eof();
306 * @return The next character, or eof.
328 * @return The next character, or eof.
632 * @c underflow() will not return @c traits::eof() until at least that
639 * calls [to underflow or uflow] will not return @c eof() but
655 * have been copied, or when @c traits::eof() would be copied.
670 * next available character is returned, or @c traits::eof() to
680 * @note Base class version does nothing, returns eof()
[all...]
/freebsd-12-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp218 Eof.setKind(tok::eof);
330 DefArgEnd.setKind(tok::eof);
362 if (Tok.isNot(tok::eof) || Tok.getEofData() != Param) {
377 while (Tok.isNot(tok::eof))
380 if (Tok.is(tok::eof) && Tok.getEofData() == Param)
403 ExceptionSpecEnd.setKind(tok::eof);
445 if (Tok.isNot(tok::eof) || Tok.getEofData() != LM.Method)
458 while (Tok.isNot(tok::eof))
462 if (Tok.is(tok::eof) && Tok.getEofData() == LM.Method)
510 BodyEnd.setKind(tok::eof);
[all...]
/freebsd-12-stable/crypto/heimdal/appl/login/
H A Dlimits_conf.c130 int eof = 1; local
133 eof = 0;
137 if(!eof) {
/freebsd-12-stable/crypto/heimdal/appl/rsh/
H A Dlimits_conf.c130 int eof = 1; local
133 eof = 0;
137 if(!eof) {
/freebsd-12-stable/contrib/subversion/subversion/libsvn_repos/
H A Dload.c79 svn_boolean_t eof;
86 eof = FALSE;
91 SVN_ERR(svn_stream_readline(stream, &header_str, "\n", &eof, pool));
95 else if (eof)
192 svn_boolean_t eof;
197 SVN_ERR(svn_stream_readline(stream, &strbuf, "\n", &eof, proppool));
199 if (eof)
224 SVN_ERR(svn_stream_readline(stream, &strbuf, "\n", &eof, proppool));
225 if (eof)
572 svn_boolean_t eof;
78 svn_boolean_t eof; local
191 svn_boolean_t eof; local
569 svn_boolean_t eof; local
[all...]
/freebsd-12-stable/contrib/netbsd-tests/bin/sh/
H A Dt_cmdsub.sh565 cat <<-\eof
567 eof
575 cat <<-\eof
577 eof
593 cat <<-"eof"
595 eof
601 cat <<-"eof"
603 eof
609 cat <<-"eof"
611 eof
[all...]
/freebsd-12-stable/contrib/subversion/subversion/libsvn_diff/
H A Dparse-diff.c311 apr_size_t buf_size; /* Bytes available (52 unless at eof) */
313 svn_boolean_t done; /* At eof? */
661 svn_boolean_t *eof,
680 *eof = TRUE;
697 SVN_ERR(svn_io_file_readline(file, &str, eol, eof, max_len,
702 while (filtered && ! *eof);
721 if (!filtered && *eof && !*eol && *str->data)
742 *eof = FALSE;
755 svn_boolean_t *eof,
764 stringbuf, eol, eof,
657 hunk_readline_original_or_modified(apr_file_t *file, struct svn_diff__hunk_range *range, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, char verboten, svn_boolean_t no_final_eol, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
752 svn_diff_hunk_readline_original_text(svn_diff_hunk_t *hunk, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
773 svn_diff_hunk_readline_modified_text(svn_diff_hunk_t *hunk, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
794 svn_diff_hunk_readline_diff_text(svn_diff_hunk_t *hunk, svn_stringbuf_t **stringbuf, const char **eol, svn_boolean_t *eof, apr_pool_t *result_pool, apr_pool_t *scratch_pool) argument
1064 svn_boolean_t eof, in_hunk, hunk_seen; local
2044 svn_boolean_t eof = FALSE; local
2204 svn_boolean_t eof; local
[all...]

Completed in 408 milliseconds

12345678