Searched refs:eof (Results 51 - 75 of 156) sorted by relevance

1234567

/freebsd-10.0-release/contrib/atf/atf-run/
H A Dio.cpp195 return traits_type::eof();
207 return traits_type::eof();
208 if (!traits_type::eq_int_type(c, traits_type::eof())) {
/freebsd-10.0-release/contrib/nvi/vi/
H A Dv_paragraph.c105 goto eof;
124 goto eof;
168 eof: if (vp->m_start.lno == lno || vp->m_start.lno == lno - 1) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Rewrite/Core/
H A DHTMLRewrite.cpp375 while (Tok.isNot(tok::eof)) {
425 while (!Tok.isAtStartOfLine() && Tok.isNot(tok::eof)) {
480 if (Tok.is(tok::eof)) break;
513 while (Tok.isNot(tok::eof)) {
546 while (!Tok.is(tok::eof) &&
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_subr/
H A Dhash.c100 svn_boolean_t eof;
113 SVN_ERR(svn_stream_readline(stream, &buf, "\n", &eof, iterpool));
116 if ((!terminator && eof && buf->len == 0)
121 if (eof)
148 SVN_ERR(svn_stream_readline(stream, &buf, "\n", &eof, iterpool));
97 svn_boolean_t eof; local
H A Dsysinfo.c355 svn_boolean_t eof = FALSE;
359 err = svn_stream_readline(lsbinfo, &line, "\n", &eof, pool);
360 if (err || eof)
463 svn_boolean_t eof;
469 err = svn_stream_readline(stream, &line, "\n", &eof, pool);
470 if (err || eof)
483 err = svn_stream_readline(stream, &line, "\n", &eof, pool);
484 if (err || eof)
352 svn_boolean_t eof = FALSE; local
460 svn_boolean_t eof; local
H A Dstream.c277 svn_boolean_t *eof,
302 *eof = TRUE;
315 *eof = FALSE;
324 svn_boolean_t *eof,
369 *eof = TRUE;
401 *eof = TRUE;
430 svn_boolean_t *eof,
435 *eof = FALSE;
447 eof,
457 eof,
274 stream_readline_bytewise(svn_stringbuf_t **stringbuf, svn_boolean_t *eof, const char *eol, svn_stream_t *stream, apr_pool_t *pool) argument
321 stream_readline_chunky(svn_stringbuf_t **stringbuf, svn_boolean_t *eof, const char *eol, svn_stream_t *stream, apr_pool_t *pool) argument
427 stream_readline(svn_stringbuf_t **stringbuf, svn_boolean_t *eof, const char *eol, svn_stream_t *stream, apr_pool_t *pool) argument
465 svn_stream_readline(svn_stream_t *stream, svn_stringbuf_t **stringbuf, const char *eol, svn_boolean_t *eof, apr_pool_t *pool) argument
754 svn_boolean_t eof; local
[all...]
/freebsd-10.0-release/lib/libc/rpc/
H A Dgetnetconfig.c104 int eof; /* all entries has been read */ member in struct:netconfig_info
293 if (ni.eof == 1) {
324 ni.eof = 1;
417 ni.eof = ni.ref = 0;
480 if (ni.eof == 1) { /* that's all the entries */
507 if (stringp == NULL) { /* eof */
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/zmod/
H A Dtrees.c867 void _tr_stored_block(s, buf, stored_len, eof)
871 int eof; /* true if this is the last block for a file */
873 send_bits(s, (STORED_BLOCK<<1)+eof, 3); /* send block type */
921 void _tr_flush_block(s, buf, stored_len, eof)
925 int eof; /* true if this is the last block for a file */
981 _tr_stored_block(s, buf, stored_len, eof);
988 send_bits(s, (STATIC_TREES<<1)+eof, 3);
994 send_bits(s, (DYN_TREES<<1)+eof, 3);
1008 if (eof) {
1015 s->compressed_len-7*eof));
[all...]
H A Ddeflate.h285 int eof));
288 int eof));
/freebsd-10.0-release/contrib/binutils/bfd/
H A Dtekhex.c457 bfd_boolean eof = FALSE; local
462 while (! eof)
468 eof = (bfd_boolean) (bfd_bread (src, (bfd_size_type) 1, abfd) != 1);
469 while (*src != '%' && !eof)
470 eof = (bfd_boolean) (bfd_bread (src, (bfd_size_type) 1, abfd) != 1);
472 if (eof)
/freebsd-10.0-release/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_gzip.c59 char eof; /* True = found end of compressed data. */ member in struct:private_data
387 while (state->stream.avail_out > 0 && !state->eof) {
393 state->eof = 1;
H A Darchive_read_support_filter_lzop.c84 char eof; /* True = found end of compressed data. */ member in struct:read_lzop
364 if (state->eof)
373 state->eof = 1;
/freebsd-10.0-release/contrib/subversion/subversion/include/
H A Dsvn_diff.h929 * If EOF is reached, set @a *eof to TRUE, and set @a *eol to NULL if the
939 svn_boolean_t *eof,
948 * If EOF is reached, set @a *eof to TRUE, and set @a *eol to NULL if the
959 svn_boolean_t *eof,
974 svn_boolean_t *eof,
/freebsd-10.0-release/contrib/amd/conf/nfs_prot/
H A Dnfs_prot_freebsd3.h94 #define dl_eof eof
/freebsd-10.0-release/contrib/libstdc++/config/locale/generic/
H A Dc_locale.cc123 if (__p && static_cast<int_type>(__p) != char_traits<char>::eof()
/freebsd-10.0-release/contrib/libstdc++/include/bits/
H A Dostream_insert.h68 if (_Traits::eq_int_type(__put, _Traits::eof()))
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/AST/
H A DCommentBriefParser.cpp71 while (Tok.isNot(tok::eof)) {
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Parse/
H A DParseAST.cpp46 if (Tok.is(tok::eof)) {
47 OS << "<eof> parser at end of file\n";
/freebsd-10.0-release/lib/libutil/
H A Dgr_util.c171 int eof, readlen; local
182 eof = 0;
193 if (eof)
216 eof = 1;
H A Dpw_util.c435 int eof, readlen; local
453 eof = 0;
464 if (eof)
487 eof = 1;
/freebsd-10.0-release/lib/libz/
H A Dgzguts.h179 int eof; /* true if end of input file reached */ member in struct:__anon5719
/freebsd-10.0-release/usr.sbin/cron/crontab/
H A Dcrontab.c503 int ch, eof; local
552 CheckErrorCount = 0; eof = FALSE;
553 while (!CheckErrorCount && !eof) {
556 eof = TRUE;
/freebsd-10.0-release/contrib/libyaml/tests/
H A Dtest-reader.c269 printf("\texpected NUL, found %X (eof=%d, unread=%d)\n", (int)parser.buffer.pointer[0], parser.eof, parser.unread);
340 printf("\texpected NUL, found %X (eof=%d, unread=%d)\n", (int)parser.buffer.pointer[0], parser.eof, parser.unread);
/freebsd-10.0-release/sys/cddl/contrib/opensolaris/uts/common/fs/
H A Dgfs.c206 * eof = 0;
211 * eof = 1
218 * return (gfs_readdir_fini(..., error, eofp, eof));
408 * eof - the eof value
414 gfs_readdir_fini(gfs_readdir_state_t *st, int error, int *eofp, int eof) argument
426 *eofp = eof;
978 * eofp - eof pointer
1024 int error, eof = 0; local
1038 cookies)) == 0 && !eof) {
[all...]
/freebsd-10.0-release/usr.bin/csup/
H A Dstatus.c85 int eof; member in struct:status
184 if (st->rd == NULL || st->eof)
193 st->eof = 1;
443 st->eof = 0;
510 st->eof = 1;
613 if (st->eof)
749 return (st->eof);

Completed in 204 milliseconds

1234567