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

12345678

/freebsd-current/sys/contrib/zlib/
H A Dgzread.c10 state->fd, and update state->eof, state->err, and state->msg as appropriate.
33 state->eof = 1;
37 /* Load up input buffer and set eof flag if last data loaded -- return -1 on
38 error, 0 otherwise. Note that the eof flag is set when the end of the input
50 if (state->eof == 0) {
135 state->eof = 1;
232 } while (state->x.have == 0 && (!state->eof || strm->avail_in));
253 else if (state->eof && state->strm.avail_in == 0)
302 else if (state->eof && state->strm.avail_in == 0) {
H A Dgzguts.h187 int eof; /* true if end of input file reached */ member in struct:__anon40
H A Dgzlib.c74 state->eof = 0; /* not at end of file */
375 state->eof = 0;
519 state->eof = 0;
/freebsd-current/contrib/libarchive/libarchive/
H A Darchive_read_support_filter_gzip.c63 char eof; /* True = found end of compressed data. */ member in struct:private_data
436 while (state->stream.avail_out > 0 && !state->eof) {
442 state->eof = 1;
H A Darchive_read_support_filter_lz4.c82 char eof; /* True = found end of compressed data. */ member in struct:private_data
295 if (state->eof) {
336 state->eof = 1;
361 state->eof = 1;
366 state->eof = 1;
H A Darchive_read_support_filter_lzop.c82 char eof; /* True = found end of compressed data. */ member in struct:read_lzop
375 if (state->eof)
384 state->eof = 1;
/freebsd-current/sys/contrib/zstd/zlibWrapper/
H A Dgzguts.h195 int eof; /* true if end of input file reached */ member in struct:__anon11096
H A Dgzlib.c83 state.state->eof = 0; /* not at end of file */
407 state.state->eof = 0;
570 state.state->eof = 0;
/freebsd-current/usr.sbin/cron/crontab/
H A Dcrontab.c495 int ch, eof; local
547 CheckErrorCount = 0; eof = FALSE;
548 while (!CheckErrorCount && !eof) {
551 eof = TRUE;
/freebsd-current/lib/libutil/
H A Dgr_util.c170 int eof, readlen; local
193 eof = 0;
204 if (eof)
233 eof = 1;
H A Dpw_util.c432 int eof, readlen; local
455 eof = 0;
466 if (eof)
495 eof = 1;
/freebsd-current/contrib/llvm-project/libcxx/include/__iterator/
H A Distreambuf_iterator.h61 if (__sbuf_ && traits_type::eq_int_type(__sbuf_->sgetc(), traits_type::eof()))
/freebsd-current/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DInclusionRewriter.cpp344 } while (!DirectiveToken.is(tok::eod) && DirectiveToken.isNot(tok::eof));
414 while (RawToken.isNot(tok::eof)) {
491 } while (!RawToken.is(tok::eod) && RawToken.isNot(tok::eof));
524 } while (RawToken.isNot(tok::eod) && RawToken.isNot(tok::eof));
571 } while (Tok.isNot(tok::eof));
/freebsd-current/lib/libc/tests/stdio/
H A Dgetdelim_test.c151 ATF_TC_WITHOUT_HEAD(eof); variable
152 ATF_TC_BODY(eof, tc)
423 ATF_TP_ADD_TC(tp, eof);
/freebsd-current/contrib/diff/src/
H A Ddiff.h294 bool eof;
291 bool eof; member in struct:file_data
H A Dio.c76 if (size && ! current->eof)
83 current->eof = s < size;
136 current->eof = false;
144 current->eof = false;
/freebsd-current/crypto/heimdal/lib/roken/
H A Dgetcap.c238 int myfd = 0, eof, foundit; local
278 eof = 0;
369 eof = 1;
441 * If encountered eof check next file.
443 if (eof)
/freebsd-current/contrib/bc/src/
H A Ddc_lex.c144 if (!vm->eof && l->mode != BC_MODE_FILE)
H A Dvm.c1139 if (vm->eof) return false;
1147 vm->eof = (s == BC_STATUS_EOF);
1149 while (s == BC_STATUS_SUCCESS && !vm->eof && vm->line_buf.len < 1);
1210 if (vm->eof) break;
1243 if (!vm->status && !vm->eof)
/freebsd-current/lib/libc/gen/
H A Dgetcap.c188 int myfd, eof, foundit, retval; local
229 eof = 0;
307 eof = 1;
351 * If encountered eof check next file.
353 if (eof)
/freebsd-current/contrib/llvm-project/clang/lib/Parse/
H A DParseAST.cpp61 if (Tok.is(tok::eof)) {
62 OS << "<eof> parser at end of file\n";
/freebsd-current/contrib/llvm-project/clang/include/clang/Lex/
H A DVariadicMacroSupport.h161 SyntheticEOFToken.setKind(tok::eof);
/freebsd-current/include/rpcsvc/
H A Dnfs_prot.x266 bool eof;
646 bool eof;
945 bool eof;
987 bool eof;
/freebsd-current/contrib/llvm-project/clang/lib/Lex/
H A DPPMacroExpansion.cpp706 } else if (I->is(tok::eof)) {
794 if (ContainsCodeCompletionTok && Tok.isOneOf(tok::eof, tok::eod))
812 if (Tok.isOneOf(tok::eof, tok::eod)) { // "#if f(<eof>" & "#if f(\n"
909 EOFTok.setKind(tok::eof);
970 EOFTok.setKind(tok::eof);
1023 Tok.setKind(tok::eof);
1300 if (!Tok.isOneOf(tok::eof, tok::eod)) {
1322 case tok::eof:
1324 // Don't provide even a dummy value if the eod or eof marke
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/AST/
H A DCommentParser.cpp550 case tok::eof:
591 if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
600 if (Tok.is(tok::newline) || Tok.is(tok::eof)) {
732 case tok::eof:
753 while (Tok.isNot(tok::eof)) {

Completed in 309 milliseconds

12345678