Home
last modified time | relevance | path

Searched refs:eof (Results 1 – 25 of 202) sorted by relevance

123456789

/freebsd-9-stable/contrib/libreadline/
Dcallback.c109 int eof, jcode; in rl_callback_read_char() local
132 eof = _rl_isearch_callback (_rl_iscxt); in rl_callback_read_char()
133 if (eof == 0 && (RL_ISSTATE (RL_STATE_ISEARCH) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING)) in rl_callback_read_char()
140 eof = _rl_nsearch_callback (_rl_nscxt); in rl_callback_read_char()
145 eof = _rl_arg_callback (_rl_argcxt); in rl_callback_read_char()
146 if (eof == 0 && (RL_ISSTATE (RL_STATE_NUMERICARG) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING)) in rl_callback_read_char()
156 eof = _rl_dispatch_callback (_rl_kscxt); /* For now */ in rl_callback_read_char()
157 …while ((eof == -1 || eof == -2) && RL_ISSTATE (RL_STATE_MULTIKEY) && _rl_kscxt && (_rl_kscxt->flag… in rl_callback_read_char()
158 eof = _rl_dispatch_callback (_rl_kscxt); in rl_callback_read_char()
173 eof = (*_rl_callback_func) (_rl_callback_data); in rl_callback_read_char()
[all …]
/freebsd-9-stable/usr.sbin/cron/lib/
Dentry.c192 goto eof;
200 goto eof;
209 goto eof;
219 goto eof;
231 goto eof;
241 goto eof;
253 goto eof;
280 goto eof;
296 goto eof;
300 goto eof;
[all …]
/freebsd-9-stable/contrib/libc++/include/
D__std_stream49 virtual int_type pbackfail(int_type __c = traits_type::eof());
72 __last_consumed_(traits_type::eof()),
112 __last_consumed_ = traits_type::eof();
123 return traits_type::eof();
146 return traits_type::eof();
150 return traits_type::eof();
156 return traits_type::eof();
168 return traits_type::eof();
180 if (traits_type::eq_int_type(__c, traits_type::eof()))
186 traits_type::eof());
[all …]
Dstreambuf100 virtual int_type pbackfail(int_type c = traits_type::eof());
104 virtual int_type overflow (int_type c = traits_type::eof());
201 virtual int_type pbackfail(int_type __c = traits_type::eof());
205 virtual int_type overflow(int_type __c = traits_type::eof());
291 if (sbumpc() == traits_type::eof())
292 return traits_type::eof();
495 const int_type __eof = traits_type::eof();
514 return traits_type::eof();
521 if (underflow() == traits_type::eof())
522 return traits_type::eof();
[all …]
/freebsd-9-stable/contrib/opie/libopie/
Dreadpass.c82 char eof[4]; variable
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;
/freebsd-9-stable/contrib/libreadline/examples/
Dreadlinebuf.h54 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;
/freebsd-9-stable/games/random/
Drandomize_fd.c101 int bufleft, eof, fndstr, ret; in randomize_fd() local
107 bufleft = eof = fndstr = numnode = 0; in randomize_fd()
117 while (!eof) { in randomize_fd()
124 eof++; in randomize_fd()
136 if (!eof) { in randomize_fd()
144 eof++; in randomize_fd()
158 if (!eof) { in randomize_fd()
163 eof++; in randomize_fd()
176 (eof && i == buflen - 1)) { in randomize_fd()
/freebsd-9-stable/contrib/libstdc++/include/ext/
Dstdio_sync_filebuf.h72 : _M_file(__f), _M_unget_buf(traits_type::eof()) in _GLIBCXX_BEGIN_NAMESPACE()
111 pbackfail(int_type __c = traits_type::eof()) in _GLIBCXX_BEGIN_NAMESPACE()
114 const int_type __eof = traits_type::eof(); in _GLIBCXX_BEGIN_NAMESPACE()
136 overflow(int_type __c = traits_type::eof()) in _GLIBCXX_BEGIN_NAMESPACE()
139 if (traits_type::eq_int_type(__c, traits_type::eof())) in _GLIBCXX_BEGIN_NAMESPACE()
142 __ret = traits_type::eof(); in _GLIBCXX_BEGIN_NAMESPACE()
210 _M_unget_buf = traits_type::eof(); in xsgetn()
240 const int_type __eof = traits_type::eof(); in xsgetn()
253 _M_unget_buf = traits_type::eof(); in xsgetn()
263 const int_type __eof = traits_type::eof(); in xsputn()
/freebsd-9-stable/crypto/openssl/crypto/evp/
Dencode.c241 int seof = -1, eof = 0, rv = -1, ret = 0, i, v, tmp, n, ln, exp_nl; in EVP_DecodeUpdate() local
284 eof++; in EVP_DecodeUpdate()
307 if (((i + 1) == inl) && (((n & 3) == 0) || eof)) { in EVP_DecodeUpdate()
315 eof = 0; in EVP_DecodeUpdate()
317 eof++; in EVP_DecodeUpdate()
319 eof++; in EVP_DecodeUpdate()
337 if (eof > v) { in EVP_DecodeUpdate()
341 ret += (v - eof); in EVP_DecodeUpdate()
343 eof = 1; in EVP_DecodeUpdate()
351 if ((v < ctx->length) && eof) { in EVP_DecodeUpdate()
/freebsd-9-stable/gnu/usr.bin/rcs/lib/
Drcsfcmp.c185 goto eof;
203 goto eof;
211 goto eof;
238 goto eof;
247 goto eof;
263 goto eof;
323 eof:
/freebsd-9-stable/contrib/libstdc++/include/bits/
Dstreambuf_iterator.h96 : _M_sbuf(0), _M_c(traits_type::eof()) { } in _GLIBCXX_BEGIN_NAMESPACE()
100 : _M_sbuf(__s.rdbuf()), _M_c(traits_type::eof()) { } in _GLIBCXX_BEGIN_NAMESPACE()
104 : _M_sbuf(__s), _M_c(traits_type::eof()) { } in _GLIBCXX_BEGIN_NAMESPACE()
132 _M_c = traits_type::eof(); in _GLIBCXX_BEGIN_NAMESPACE()
149 _M_c = traits_type::eof(); in _GLIBCXX_BEGIN_NAMESPACE()
170 const int_type __eof = traits_type::eof(); in _GLIBCXX_BEGIN_NAMESPACE()
188 const int_type __eof = traits_type::eof(); in _GLIBCXX_BEGIN_NAMESPACE()
244 _Traits::eq_int_type(_M_sbuf->sputc(__c), _Traits::eof()))
337 while (!traits_type::eq_int_type(__c, traits_type::eof())) in __copy_aux()
373 while (!traits_type::eq_int_type(__c, traits_type::eof()) in find()
[all …]
Distream.tcc62 const __int_type __eof = traits_type::eof(); in _GLIBCXX_BEGIN_NAMESPACE()
184 const int_type __eof = traits_type::eof(); in get()
224 if (!traits_type::eq_int_type(__cb, traits_type::eof())) in get()
255 const int_type __eof = traits_type::eof(); in get()
297 const int_type __eof = traits_type::eof(); in get()
336 const int_type __eof = traits_type::eof(); in getline()
390 const int_type __eof = traits_type::eof(); in ignore()
418 const int_type __eof = traits_type::eof(); in ignore()
474 const int_type __eof = traits_type::eof(); in ignore()
525 int_type __c = traits_type::eof(); in peek()
[all …]
Dstreambuf.tcc69 if (!traits_type::eq_int_type(__c, traits_type::eof())) in _GLIBCXX_BEGIN_NAMESPACE()
103 if (!traits_type::eq_int_type(__c, traits_type::eof())) in xsputn()
127 while (!_Traits::eq_int_type(__c, _Traits::eof())) in __copy_streambufs_eof()
130 if (_Traits::eq_int_type(__c, _Traits::eof())) in __copy_streambufs_eof()
Dchar_traits.h138 eof() in eof() function
143 { return !eq_int_type(__c, eof()) ? __c : to_int_type(char_type()); } in not_eof()
291 eof() { return static_cast<int_type>(EOF); }
295 { return (__c == eof()) ? 0 : __c; }
357 eof() { return static_cast<int_type>(WEOF); }
361 { return eq_int_type(__c, eof()) ? 0 : __c; }
/freebsd-9-stable/contrib/groff/src/utils/tfmtodit/
Dtfmtodit.cpp429 goto eof; in load()
431 goto eof; in load()
435 goto eof; in load()
449 goto eof; in load()
454 goto eof; in load()
459 goto eof; in load()
465 goto eof; in load()
472 goto eof; in load()
479 goto eof; in load()
486 goto eof; in load()
[all …]
/freebsd-9-stable/contrib/libstdc++/src/
Dstreambuf.cc47 while (!traits_type::eq_int_type(__c, traits_type::eof())) in _GLIBCXX_BEGIN_NAMESPACE()
65 if (traits_type::eq_int_type(__c, traits_type::eof())) in _GLIBCXX_BEGIN_NAMESPACE()
87 while (!traits_type::eq_int_type(__c, traits_type::eof())) in __copy_streambufs_eof()
105 if (traits_type::eq_int_type(__c, traits_type::eof())) in __copy_streambufs_eof()
Distream.cc51 const int_type __eof = traits_type::eof(); in _GLIBCXX_BEGIN_NAMESPACE()
113 if (traits_type::eq_int_type(__delim, traits_type::eof())) in ignore()
124 const int_type __eof = traits_type::eof(); in ignore()
211 const __int_type __eof = __traits_type::eof(); in operator >>()
287 const __int_type __eof = __traits_type::eof(); in operator >>()
361 const __int_type __eof = __traits_type::eof(); in getline()
431 const int_type __eof = traits_type::eof(); in getline()
493 if (traits_type::eq_int_type(__delim, traits_type::eof())) in ignore()
504 const int_type __eof = traits_type::eof(); in ignore()
590 const __int_type __eof = __traits_type::eof(); in getline()
/freebsd-9-stable/contrib/groff/src/preproc/pic/
Dmain.cpp49 int eof; member in top_input
59 top_input::top_input(FILE *p) : fp(p), bol(1), eof(0) in top_input()
67 if (eof) in get()
99 eof = 1; in get()
113 eof = 1; in get()
138 eof = 1; in get()
148 if (eof) in peek()
171 eof = 1; in peek()
186 eof = 1; in peek()
/freebsd-9-stable/contrib/ntp/sntp/libevent/test/
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-9-stable/contrib/llvm/tools/clang/lib/Format/
DUnwrappedLineParser.cpp80 assert(!eof()); in getNextToken()
82 if (eof()) in getNextToken()
95 bool eof() { return Token && Token->HasUnescapedNewline; } in eof() function in clang::format::__anon79e528c70111::ScopedMacroState
102 FormatTok.Tok.setKind(tok::eof); in getFakeEOF()
285 } while (!eof()); in parseLevel()
353 } while (Tok->Tok.isNot(tok::eof) && !LBraceStack.empty()); in calculateBraceTypes()
526 } while (!eof()); in parsePPUnknown()
729 } while (!eof()); in parseStructuralElement()
804 } while (!eof()); in tryToParseLambdaIntroducer()
860 } while (!eof()); in parseBracedList()
[all …]
/freebsd-9-stable/sys/contrib/octeon-sdk/
Dcvmx-zip.h129 uint64_t eof : 1; // decompression only member
133 uint64_t eof : 1; // decompression only member
160 uint64_t eof : 1; member
174 uint64_t eof : 1;
/freebsd-9-stable/sys/gnu/fs/xfs/FreeBSD/
Dxfs_stats.c43 int *eof, in xfs_read_xfsstats() argument
85 *eof = 1; in xfs_read_xfsstats()
91 *eof = 1; in xfs_read_xfsstats()
/freebsd-9-stable/contrib/libstdc++/include/std/
Dstd_streambuf.h297 int_type __ret = traits_type::eof(); in snextc()
684 { return traits_type::eof(); } in underflow()
698 int_type __ret = traits_type::eof(); in uflow()
720 pbackfail(int_type /* __c */ = traits_type::eof())
721 { return traits_type::eof(); }
763 overflow(int_type /* __c */ = traits_type::eof())
764 { return traits_type::eof(); }
/freebsd-9-stable/usr.bin/cmp/
Dspecial.c64 goto eof; in c_special()
67 goto eof; in c_special()
92 eof: if (ferror(fp1)) in c_special()
/freebsd-9-stable/contrib/nvi/common/
Ddelete.c43 int eof, rval; local
69 eof = tm->cno >= len ? 1 : 0;
71 eof = 1;
72 if (eof) {

123456789