HomeSort by: relevance | last modified time | path
    Searched defs:eof (Results 1 - 25 of 95) sorted by relevancy

1 2 3 4

  /src/games/boggle/boggle/
help.c 55 int eof, i; local
65 eof = 0;
66 if (ungetc(getc(fp), fp) == EOF) {
68 eof = 1; /* Nothing there... */
71 while (!eof) {
74 eof = 1;
81 if (eof || ungetc(getc(fp), fp) == EOF) {
82 eof = 1;
95 if (eof) {
    [all...]
  /src/external/bsd/nvi/dist/common/
delete.c 46 int eof, rval; local
63 * Case 2 -- delete to EOF. This is a special case because it's
72 eof = tm->cno != ENTIRE_LINE && tm->cno >= len ? 1 : 0;
74 eof = 1;
75 if (eof) {
  /src/external/gpl2/groff/dist/src/preproc/html/
pushback.h 24 #define eof (char)-1 macro
  /src/external/bsd/nsd/dist/
ixfrcreate.h 77 int eof; member in struct:spool_dname_iterator
verify.c 89 static inline size_t print_line(struct verifier_stream *stream, int eof)
110 // wait for buffer to contain a full line except on eof
111 if (len < LOGLINELEN && !eol && !eof)
135 int eof = 0; local
156 eof = !cnt || (cnt < 0 && errno != EAGAIN && errno != EINTR);
157 while (print_line(stream, eof)) ;
160 if(eof) {
  /src/bin/ksh/
edit.h 37 int eof; member in struct:__anon11
  /src/external/gpl3/gdb/dist/readline/readline/
callback.c 133 int eof, jcode; local
142 eof = 0;
177 eof = _rl_isearch_callback (_rl_iscxt);
178 if (eof == 0 && (RL_ISSTATE (RL_STATE_ISEARCH) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING))
185 eof = _rl_nsearch_callback (_rl_nscxt);
198 eof = (*_rl_callback_func) (_rl_callback_data);
222 eof = _rl_vi_domove_callback (_rl_vimvcxt);
233 eof = _rl_arg_callback (_rl_argcxt);
234 if (eof == 0 && (RL_ISSTATE (RL_STATE_NUMERICARG) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING))
244 eof = _rl_dispatch_callback (_rl_kscxt); /* For now *
    [all...]
  /src/external/gpl3/gdb.old/dist/readline/readline/
callback.c 133 int eof, jcode; local
142 eof = 0;
177 eof = _rl_isearch_callback (_rl_iscxt);
178 if (eof == 0 && (RL_ISSTATE (RL_STATE_ISEARCH) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING))
185 eof = _rl_nsearch_callback (_rl_nscxt);
198 eof = (*_rl_callback_func) (_rl_callback_data);
222 eof = _rl_vi_domove_callback (_rl_vimvcxt);
233 eof = _rl_arg_callback (_rl_argcxt);
234 if (eof == 0 && (RL_ISSTATE (RL_STATE_NUMERICARG) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING))
244 eof = _rl_dispatch_callback (_rl_kscxt); /* For now *
    [all...]
  /src/crypto/external/apache2/openssl/dist/demos/guide/
tls-client-non-block.c 152 /* EOF */
188 int eof = 0; local
314 while (!eof && !SSL_read_ex(ssl, buf, sizeof(buf), &readbytes)) {
319 eof = 1;
334 if (!eof)
336 } while (!eof);
342 * SSL_ERROR_ZERO_RETURN (i.e. EOF) above). We should do the same back.
351 * (i.e. EOF) above.
quic-client-non-block.c 175 /* EOF */
237 int eof = 0; local
377 while (!eof && !SSL_read_ex(ssl, buf, sizeof(buf), &readbytes)) {
382 eof = 1;
397 if (!eof)
399 } while (!eof);
quic-server-non-block.c 292 * - 0: EOF, indicating the connection has been closed.
312 /* EOF */
363 int ret, eof; local
397 eof = 0;
411 while (!eof) {
426 eof = 1;
  /src/external/apache2/mDNSResponder/dist/ServiceRegistration/
config-parse.c 114 char *buf, *line, *eof, *eol, *nextCR, *nextNL; local
158 eof = buf + flen;
163 while (line < eof) { // < because NUL at eof could be last eol.
  /src/external/bsd/libarchive/dist/libarchive/
archive_read_support_filter_bzip2.c 55 char eof; /* True = found end of compressed data. */ member in struct:private_data
224 if (state->eof) {
237 state->eof = 1;
292 state->eof = 1;
archive_read_support_filter_gzip.c 63 char eof; /* True = found end of compressed data. */ member in struct:private_data
446 while (state->stream.avail_out > 0 && !state->eof) {
452 state->eof = 1;
archive_read_support_filter_zstd.c 62 char eof; /* True = found end of compressed data. */ member in struct:private_data
241 state->eof = 0;
262 while (out.pos < out.size && !state->eof) {
281 state->eof = 1;
  /src/external/bsd/nsd/dist/simdzone/src/generic/
base16.h 19 int eof; member in struct:base16_state
164 st.eof = state->eof;
168 if (st.eof) {
191 st.eof = BASE16_EOF;
205 st.eof = BASE16_EOF;
215 state->eof = st.eof;
226 struct base16_state state = { .eof = 0, .bytes = 0, .carry = 0 };
245 struct base16_state state = { .eof = 0, .bytes = 0, .carry = 0 }
    [all...]
base64.h 19 int eof; member in struct:base64_state
553 st.eof = state->eof;
557 // If we previously saw an EOF or an invalid character, bail out:
558 if (st.eof) {
562 if (slen && (st.eof == BASE64_AEOF)) {
564 state->eof = BASE64_EOF;
593 st.eof = BASE64_EOF;
608 st.eof = BASE64_EOF;
631 // EOF
    [all...]
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/
char_traits.h 100 * right, but the int_type and state_type typedefs, and the eof()
175 eof() function in struct:char_traits
180 { return !eq_int_type(__c, eof()) ? __c : to_int_type(char_type()); }
446 // To keep both the byte 0xff and the eof symbol 0xffffffff
458 eof() _GLIBCXX_NOEXCEPT
463 { return (__c == eof()) ? 0 : __c; }
587 eof() _GLIBCXX_NOEXCEPT
592 { return eq_int_type(__c, eof()) ? 0 : __c; }
722 eof() _GLIBCXX_NOEXCEPT
727 { return eq_int_type(__c, eof()) ? 0 : __c;
    [all...]
  /src/external/gpl3/gdb/dist/readline/readline/examples/
readlinebuf.h 54 static const int_type eof = EOF; // this is -1 member in class:readlinebuf
99 else return eof;
104 if ( c != eof ) ++low_;
108 virtual int_type pbackfail( int_type c = eof ) {
110 else if ( c != eof ) {
117 } else return eof;
124 } else return eof;
  /src/external/gpl3/gdb.old/dist/readline/readline/examples/
readlinebuf.h 54 static const int_type eof = EOF; // this is -1 member in class:readlinebuf
99 else return eof;
104 if ( c != eof ) ++low_;
108 virtual int_type pbackfail( int_type c = eof ) {
110 else if ( c != eof ) {
117 } else return eof;
124 } else return eof;
  /src/games/hack/
makedefs.c 144 int eof; variable
155 eof++;
177 if (eof) {
  /src/sys/nfs/
nfs_clntsubs.c 481 int error, eof, nc, len; local
494 error = VOP_READDIR(vp, &auio, cred, &eof, &cookies, &nc);
  /src/usr.bin/lam/
lam.c 61 short eof; /* eof flag */ member in struct:openfile
199 if (ip->eof)
201 for (p = s; (c = fgetc(ip->fp)) != EOF && p < end; p++)
205 if (c == EOF) {
206 ip->eof = 1;
  /src/crypto/external/bsd/openssl.old/dist/crypto/store/
store_local.h 109 OSSL_STORE_eof_fn eof; member in struct:ossl_store_loader_st
  /src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/
pod_char_traits.h 48 // well as EOF.
184 eof() function in struct:char_traits
194 { return eq_int_type(__c, eof()) ? int_type() : __c; }

Completed in 24 milliseconds

1 2 3 4