| /netbsd-src/external/gpl3/gdb/dist/readline/readline/ |
| H A D | callback.c | 130 int eof, jcode; in rl_callback_read_char() local 139 eof = 0; in rl_callback_read_char() 166 eof = _rl_isearch_callback (_rl_iscxt); in rl_callback_read_char() 167 if (eof == 0 && (RL_ISSTATE (RL_STATE_ISEARCH) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING)) in rl_callback_read_char() 174 eof = _rl_nsearch_callback (_rl_nscxt); in rl_callback_read_char() 187 eof = (*_rl_callback_func) (_rl_callback_data); in rl_callback_read_char() 211 eof = _rl_vi_domove_callback (_rl_vimvcxt); in rl_callback_read_char() 222 eof = _rl_arg_callback (_rl_argcxt); in rl_callback_read_char() 223 if (eof == 0 && (RL_ISSTATE (RL_STATE_NUMERICARG) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING)) in rl_callback_read_char() 233 eof = _rl_dispatch_callback (_rl_kscxt); /* For now */ in rl_callback_read_char() [all …]
|
| /netbsd-src/games/boggle/boggle/ |
| H A D | help.c | 55 int eof, i; in help() local 65 eof = 0; in help() 68 eof = 1; /* Nothing there... */ in help() 71 while (!eof) { in help() 74 eof = 1; in help() 81 if (eof || ungetc(getc(fp), fp) == EOF) { in help() 82 eof = 1; in help() 95 if (eof) { in help()
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/include/ |
| H A D | __std_stream | 50 virtual int_type pbackfail(int_type __c = traits_type::eof()); 73 __last_consumed_(traits_type::eof()), 113 __last_consumed_ = traits_type::eof(); 124 return traits_type::eof(); 147 return traits_type::eof(); 151 return traits_type::eof(); 157 return traits_type::eof(); 169 return traits_type::eof(); 181 if (traits_type::eq_int_type(__c, traits_type::eof())) 187 traits_type::eof()); [all …]
|
| H A D | streambuf | 99 virtual int_type pbackfail(int_type c = traits_type::eof()); 103 virtual int_type overflow (int_type c = traits_type::eof()); 180 if (sbumpc() == traits_type::eof()) 181 return traits_type::eof(); 288 virtual int_type pbackfail(int_type __c = traits_type::eof()); 292 virtual int_type overflow(int_type __c = traits_type::eof()); 405 const int_type __eof = traits_type::eof(); 435 return traits_type::eof(); 442 if (underflow() == traits_type::eof()) 443 return traits_type::eof(); [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/readline/readline/examples/ |
| H A D | readlinebuf.h | 54 static const int_type eof = EOF; // this is -1 variable 99 else return eof; in underflow() 104 if ( c != eof ) ++low_; in uflow() 108 virtual int_type pbackfail( int_type c = eof ) { 110 else if ( c != eof ) { 117 } else return eof; 124 } else return eof;
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/ext/ |
| H A D | stdio_sync_filebuf.h | 80 : _M_file(__f), _M_unget_buf(traits_type::eof()) in _GLIBCXX_VISIBILITY() 89 __fb._M_unget_buf = traits_type::eof(); in _GLIBCXX_VISIBILITY() 97 _M_unget_buf = std::__exchange(__fb._M_unget_buf, traits_type::eof()); in _GLIBCXX_VISIBILITY() 146 pbackfail(int_type __c = traits_type::eof()) in _GLIBCXX_VISIBILITY() 149 const int_type __eof = traits_type::eof(); in _GLIBCXX_VISIBILITY() 171 overflow(int_type __c = traits_type::eof()) in _GLIBCXX_VISIBILITY() 174 if (traits_type::eq_int_type(__c, traits_type::eof())) in _GLIBCXX_VISIBILITY() 177 __ret = traits_type::eof(); in _GLIBCXX_VISIBILITY() 245 _M_unget_buf = traits_type::eof(); in _GLIBCXX_VISIBILITY() 275 const int_type __eof = traits_type::eof(); in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/ext/ |
| H A D | stdio_sync_filebuf.h | 79 : _M_file(__f), _M_unget_buf(traits_type::eof()) in _GLIBCXX_VISIBILITY() 88 __fb._M_unget_buf = traits_type::eof(); in _GLIBCXX_VISIBILITY() 96 _M_unget_buf = std::__exchange(__fb._M_unget_buf, traits_type::eof()); in _GLIBCXX_VISIBILITY() 145 pbackfail(int_type __c = traits_type::eof()) in _GLIBCXX_VISIBILITY() 148 const int_type __eof = traits_type::eof(); in _GLIBCXX_VISIBILITY() 170 overflow(int_type __c = traits_type::eof()) in _GLIBCXX_VISIBILITY() 173 if (traits_type::eq_int_type(__c, traits_type::eof())) in _GLIBCXX_VISIBILITY() 176 __ret = traits_type::eof(); in _GLIBCXX_VISIBILITY() 244 _M_unget_buf = traits_type::eof(); in _GLIBCXX_VISIBILITY() 274 const int_type __eof = traits_type::eof(); in _GLIBCXX_VISIBILITY() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl.old/dist/crypto/evp/ |
| H A D | encode.c | 306 int seof = 0, eof = 0, rv = -1, ret = 0, i, v, tmp, n, decoded_len; in EVP_DecodeUpdate() local 314 eof++; in EVP_DecodeUpdate() 316 eof++; in EVP_DecodeUpdate() 339 eof++; in EVP_DecodeUpdate() 340 } else if (eof > 0 && B64_BASE64(v)) { in EVP_DecodeUpdate() 346 if (eof > 2) { in EVP_DecodeUpdate() 374 if (decoded_len < 0 || eof > decoded_len) { in EVP_DecodeUpdate() 378 ret += decoded_len - eof; in EVP_DecodeUpdate() 379 out += decoded_len - eof; in EVP_DecodeUpdate() 393 if (decoded_len < 0 || eof > decoded_len) { in EVP_DecodeUpdate() [all …]
|
| /netbsd-src/crypto/external/bsd/openssl/dist/crypto/evp/ |
| H A D | encode.c | 306 int seof = 0, eof = 0, rv = -1, ret = 0, i, v, tmp, n, decoded_len; in EVP_DecodeUpdate() local 314 eof++; in EVP_DecodeUpdate() 316 eof++; in EVP_DecodeUpdate() 339 eof++; in EVP_DecodeUpdate() 340 } else if (eof > 0 && B64_BASE64(v)) { in EVP_DecodeUpdate() 346 if (eof > 2) { in EVP_DecodeUpdate() 374 if (decoded_len < 0 || eof > decoded_len) { in EVP_DecodeUpdate() 378 ret += decoded_len - eof; in EVP_DecodeUpdate() 379 out += decoded_len - eof; in EVP_DecodeUpdate() 393 if (decoded_len < 0 || eof > decoded_len) { in EVP_DecodeUpdate() [all …]
|
| /netbsd-src/common/dist/zlib/contrib/iostream3/ |
| H A D | zfstream.cc | 193 return traits_type::eof(); in underflow() 203 return traits_type::eof(); in underflow() 221 return traits_type::eof(); in overflow() 223 if (!traits_type::eq_int_type(c, traits_type::eof())) in overflow() 235 return traits_type::eof(); in overflow() 238 return traits_type::eof(); in overflow() 244 else if (!traits_type::eq_int_type(c, traits_type::eof())) in overflow() 248 return traits_type::eof(); in overflow() 253 return traits_type::eof(); in overflow() 258 if (traits_type::eq_int_type(c, traits_type::eof())) in overflow() [all …]
|
| /netbsd-src/external/gpl3/binutils/dist/zlib/contrib/iostream3/ |
| H A D | zfstream.cc | 193 return traits_type::eof(); in underflow() 203 return traits_type::eof(); in underflow() 221 return traits_type::eof(); in overflow() 223 if (!traits_type::eq_int_type(c, traits_type::eof())) in overflow() 235 return traits_type::eof(); in overflow() 238 return traits_type::eof(); in overflow() 244 else if (!traits_type::eq_int_type(c, traits_type::eof())) in overflow() 248 return traits_type::eof(); in overflow() 253 return traits_type::eof(); in overflow() 258 if (traits_type::eq_int_type(c, traits_type::eof())) in overflow() [all …]
|
| /netbsd-src/external/gpl3/gdb/dist/zlib/contrib/iostream3/ |
| H A D | zfstream.cc | 193 return traits_type::eof(); in underflow() 203 return traits_type::eof(); in underflow() 221 return traits_type::eof(); in overflow() 223 if (!traits_type::eq_int_type(c, traits_type::eof())) in overflow() 235 return traits_type::eof(); in overflow() 238 return traits_type::eof(); in overflow() 244 else if (!traits_type::eq_int_type(c, traits_type::eof())) in overflow() 248 return traits_type::eof(); in overflow() 253 return traits_type::eof(); in overflow() 258 if (traits_type::eq_int_type(c, traits_type::eof())) in overflow() [all …]
|
| /netbsd-src/external/gpl3/binutils.old/dist/zlib/contrib/iostream3/ |
| H A D | zfstream.cc | 193 return traits_type::eof(); in underflow() 203 return traits_type::eof(); in underflow() 221 return traits_type::eof(); in overflow() 223 if (!traits_type::eq_int_type(c, traits_type::eof())) in overflow() 235 return traits_type::eof(); in overflow() 238 return traits_type::eof(); in overflow() 244 else if (!traits_type::eq_int_type(c, traits_type::eof())) in overflow() 248 return traits_type::eof(); in overflow() 253 return traits_type::eof(); in overflow() 258 if (traits_type::eq_int_type(c, traits_type::eof())) in overflow() [all …]
|
| /netbsd-src/external/gpl3/gdb.old/dist/zlib/contrib/iostream3/ |
| H A D | zfstream.cc | 193 return traits_type::eof(); in underflow() 203 return traits_type::eof(); in underflow() 221 return traits_type::eof(); in overflow() 223 if (!traits_type::eq_int_type(c, traits_type::eof())) in overflow() 235 return traits_type::eof(); in overflow() 238 return traits_type::eof(); in overflow() 244 else if (!traits_type::eq_int_type(c, traits_type::eof())) in overflow() 248 return traits_type::eof(); in overflow() 253 return traits_type::eof(); in overflow() 258 if (traits_type::eq_int_type(c, traits_type::eof())) in overflow() [all …]
|
| /netbsd-src/external/gpl2/rcs/dist/src/ |
| H A D | rcsfcmp.c | 188 goto eof; 206 goto eof; 214 goto eof; 241 goto eof; 250 goto eof; 266 goto eof; 326 eof:
|
| /netbsd-src/external/gpl2/groff/dist/src/utils/tfmtodit/ |
| H A D | tfmtodit.cpp | 431 goto eof; in load() 433 goto eof; in load() 437 goto eof; in load() 451 goto eof; in load() 456 goto eof; in load() 461 goto eof; in load() 467 goto eof; in load() 474 goto eof; in load() 481 goto eof; in load() 488 goto eof; in load() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Parse/ |
| H A D | ParseCXXInlineMethods.cpp | 215 Eof.setKind(tok::eof); in ParseCXXNonStaticMemberInitializer() 354 DefArgEnd.setKind(tok::eof); in ParseLexedMethodDeclaration() 386 if (Tok.isNot(tok::eof) || Tok.getEofData() != Param) { in ParseLexedMethodDeclaration() 401 while (Tok.isNot(tok::eof)) in ParseLexedMethodDeclaration() 404 if (Tok.is(tok::eof) && Tok.getEofData() == Param) in ParseLexedMethodDeclaration() 434 ExceptionSpecEnd.setKind(tok::eof); in ParseLexedMethodDeclaration() 476 if (Tok.isNot(tok::eof) || Tok.getEofData() != LM.Method) in ParseLexedMethodDeclaration() 489 while (Tok.isNot(tok::eof)) in ParseLexedMethodDeclaration() 493 if (Tok.is(tok::eof) && Tok.getEofData() == LM.Method) in ParseLexedMethodDeclaration() 526 BodyEnd.setKind(tok::eof); in ParseLexedMethodDef() [all …]
|
| /netbsd-src/external/gpl2/groff/dist/src/preproc/pic/ |
| H A D | main.cpp | 51 int eof; member in top_input 61 top_input::top_input(FILE *p) : fp(p), bol(1), eof(0) in top_input() 69 if (eof) in get() 101 eof = 1; in get() 115 eof = 1; in get() 140 eof = 1; in get() 150 if (eof) in peek() 173 eof = 1; in peek() 188 eof = 1; in peek()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/src/c++98/ |
| H A D | streambuf.cc | 44 while (!traits_type::eq_int_type(__c, traits_type::eof())) in __copy_streambufs_eof() 62 if (traits_type::eq_int_type(__c, traits_type::eof())) in __copy_streambufs_eof() 84 while (!traits_type::eq_int_type(__c, traits_type::eof())) in __copy_streambufs_eof() 102 if (traits_type::eq_int_type(__c, traits_type::eof())) in __copy_streambufs_eof()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++98/ |
| H A D | streambuf.cc | 44 while (!traits_type::eq_int_type(__c, traits_type::eof())) in __copy_streambufs_eof() 62 if (traits_type::eq_int_type(__c, traits_type::eof())) in __copy_streambufs_eof() 84 while (!traits_type::eq_int_type(__c, traits_type::eof())) in __copy_streambufs_eof() 102 if (traits_type::eq_int_type(__c, traits_type::eof())) in __copy_streambufs_eof()
|
| /netbsd-src/external/bsd/libevent/dist/test/ |
| H A D | Makefile.nmake | 25 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
|
| /netbsd-src/external/bsd/ntp/dist/sntp/libevent/test/ |
| H A D | Makefile.nmake | 25 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
|
| /netbsd-src/crypto/external/bsd/libsaslc/dist/test/ |
| H A D | example_client.c | 115 goto eof; in main() 129 goto eof; in main() 134 goto eof; in main() 165 eof: in main()
|
| /netbsd-src/external/gpl3/gcc.old/dist/libstdc++-v3/include/bits/ |
| H A D | streambuf_iterator.h | 116 : _M_sbuf(0), _M_c(traits_type::eof()) { } in _GLIBCXX_VISIBILITY() 131 : _M_sbuf(__s.rdbuf()), _M_c(traits_type::eof()) { } in _GLIBCXX_VISIBILITY() 135 : _M_sbuf(__s), _M_c(traits_type::eof()) { } in _GLIBCXX_VISIBILITY() 170 _M_c = traits_type::eof(); in _GLIBCXX_VISIBILITY() 185 _M_c = traits_type::eof(); in _GLIBCXX_VISIBILITY() 214 const int_type __eof = traits_type::eof(); in _GLIBCXX_VISIBILITY() 286 _Traits::eq_int_type(_M_sbuf->sputc(__c), _Traits::eof())) in _GLIBCXX_VISIBILITY() 379 while (!traits_type::eq_int_type(__c, traits_type::eof())) in _GLIBCXX_VISIBILITY() 429 const int_type __eof = traits_type::eof(); in _GLIBCXX_VISIBILITY() 476 const int_type __eof = traits_type::eof(); in _GLIBCXX_VISIBILITY()
|
| /netbsd-src/external/gpl3/gcc/dist/libstdc++-v3/include/bits/ |
| H A D | streambuf_iterator.h | 118 : _M_sbuf(0), _M_c(traits_type::eof()) { } in _GLIBCXX_VISIBILITY() 133 : _M_sbuf(__s.rdbuf()), _M_c(traits_type::eof()) { } in _GLIBCXX_VISIBILITY() 137 : _M_sbuf(__s), _M_c(traits_type::eof()) { } in _GLIBCXX_VISIBILITY() 173 _M_c = traits_type::eof(); in _GLIBCXX_VISIBILITY() 188 _M_c = traits_type::eof(); in _GLIBCXX_VISIBILITY() 218 const int_type __eof = traits_type::eof(); in _GLIBCXX_VISIBILITY() 295 _Traits::eq_int_type(_M_sbuf->sputc(__c), _Traits::eof())) in _GLIBCXX_VISIBILITY() 391 while (!traits_type::eq_int_type(__c, traits_type::eof())) in _GLIBCXX_VISIBILITY() 441 const int_type __eof = traits_type::eof(); in _GLIBCXX_VISIBILITY() 488 const int_type __eof = traits_type::eof(); in _GLIBCXX_VISIBILITY()
|