Searched refs:eof (Results 1 - 25 of 200) sorted by relevance

12345678

/freebsd-11-stable/contrib/netbsd-tests/usr.bin/m4/
H A Dt_m4.sh28 atf_test_case eof
49 atf_add_test_case eof
/freebsd-11-stable/contrib/libreadline/
H A Dcallback.c109 int eof, jcode; local
132 eof = _rl_isearch_callback (_rl_iscxt);
133 if (eof == 0 && (RL_ISSTATE (RL_STATE_ISEARCH) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING))
140 eof = _rl_nsearch_callback (_rl_nscxt);
145 eof = _rl_arg_callback (_rl_argcxt);
146 if (eof == 0 && (RL_ISSTATE (RL_STATE_NUMERICARG) == 0) && RL_ISSTATE (RL_STATE_INPUTPENDING))
156 eof = _rl_dispatch_callback (_rl_kscxt); /* For now */
157 while ((eof == -1 || eof == -2) && RL_ISSTATE (RL_STATE_MULTIKEY) && _rl_kscxt && (_rl_kscxt->flags & KSEQ_DISPATCHED))
158 eof
[all...]
/freebsd-11-stable/contrib/groff/src/preproc/html/
H A Dpushback.h22 #define eof (char)-1 macro
/freebsd-11-stable/contrib/libreadline/examples/
H A Dreadlinebuf.h54 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;
/freebsd-11-stable/contrib/opie/libopie/
H A Dreadpass.c30 mode, eat random other control characters. Added eof handling.
82 char eof[4]; local
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;
[all...]
/freebsd-11-stable/contrib/libstdc++/src/
H A Dstreambuf.cc47 while (!traits_type::eq_int_type(__c, traits_type::eof()))
65 if (traits_type::eq_int_type(__c, traits_type::eof()))
87 while (!traits_type::eq_int_type(__c, traits_type::eof()))
105 if (traits_type::eq_int_type(__c, traits_type::eof()))
/freebsd-11-stable/usr.bin/cmp/
H A Dspecial.c64 goto eof;
67 goto eof;
92 eof: if (ferror(fp1))
/freebsd-11-stable/gnu/usr.bin/rcs/lib/
H A Drcsfcmp.c185 goto eof;
203 goto eof;
211 goto eof;
238 goto eof;
247 goto eof;
263 goto eof;
323 eof:
/freebsd-11-stable/usr.sbin/cron/lib/
H A Dentry.c86 /* return NULL if eof or syntax error occurs;
226 goto eof;
234 goto eof;
244 goto eof;
254 goto eof;
266 goto eof;
276 goto eof;
288 goto eof;
315 goto eof;
331 goto eof;
[all...]
/freebsd-11-stable/contrib/libstdc++/include/ext/
H A Dstdio_sync_filebuf.h72 : _M_file(__f), _M_unget_buf(traits_type::eof())
111 pbackfail(int_type __c = traits_type::eof())
114 const int_type __eof = traits_type::eof();
136 overflow(int_type __c = traits_type::eof())
139 if (traits_type::eq_int_type(__c, traits_type::eof()))
142 __ret = traits_type::eof();
210 _M_unget_buf = traits_type::eof();
240 const int_type __eof = traits_type::eof();
253 _M_unget_buf = traits_type::eof();
263 const int_type __eof = traits_type::eof();
[all...]
/freebsd-11-stable/crypto/openssl/crypto/evp/
H A Dencode.c274 int seof = 0, eof = 0, rv = -1, ret = 0, i, v, tmp, n, decoded_len; local
281 eof++;
283 eof++;
301 eof++;
302 } else if (eof > 0 && B64_BASE64(v)) {
308 if (eof > 2) {
336 if (decoded_len < 0 || eof > decoded_len) {
340 ret += decoded_len - eof;
341 out += decoded_len - eof;
355 if (decoded_len < 0 || eof > decoded_le
[all...]
/freebsd-11-stable/sys/contrib/octeon-sdk/
H A Dcvmx-zip.h129 uint64_t eof : 1; // decompression only member in struct:__anon8833::__anon8834
133 uint64_t eof : 1; // decompression only member in struct:__anon8833::__anon8834
161 uint64_t eof : 1; member in struct:__anon8835::__anon8836
175 uint64_t eof : 1;
/freebsd-11-stable/sys/i386/include/
H A Dpcaudioio.h47 unsigned eof; /* ?!? */ member in struct:audio_prinfo
/freebsd-11-stable/sys/vm/
H A Dvnode_pager.h54 off_t eof, int lpos);
/freebsd-11-stable/usr.bin/random/
H A Drandomize_fd.c101 int bufleft, eof, fndstr, ret; local
107 bufleft = eof = fndstr = numnode = 0;
117 while (!eof) {
124 eof++;
136 if (!eof) {
144 eof++;
158 if (!eof) {
163 eof++;
176 (eof && i == buflen - 1)) {
/freebsd-11-stable/contrib/libstdc++/include/bits/
H A Dstreambuf_iterator.h86 // returns traits_type::eof()), the iterator becomes equal to
96 : _M_sbuf(0), _M_c(traits_type::eof()) { }
100 : _M_sbuf(__s.rdbuf()), _M_c(traits_type::eof()) { }
104 : _M_sbuf(__s), _M_c(traits_type::eof()) { }
132 _M_c = traits_type::eof();
149 _M_c = traits_type::eof();
170 const int_type __eof = traits_type::eof();
188 const int_type __eof = traits_type::eof();
244 _Traits::eq_int_type(_M_sbuf->sputc(__c), _Traits::eof()))
337 while (!traits_type::eq_int_type(__c, traits_type::eof()))
[all...]
/freebsd-11-stable/contrib/atf/atf-c++/detail/
H A Dtext.hpp141 if (!ss.eof() || (ss.eof() && (ss.fail() || ss.bad())))
/freebsd-11-stable/contrib/ntp/sntp/libevent/test/
H A 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-11-stable/contrib/nvi/common/
H A Ddelete.c45 int eof, rval; local
71 eof = tm->cno != ENTIRE_LINE && tm->cno >= len ? 1 : 0;
73 eof = 1;
74 if (eof) {
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteMacros.cpp49 assert(CurTok < RawTokens.size() && "Overran eof!");
84 } while (RawTok.isNot(tok::eof));
113 while (RawTok.isNot(tok::eof) || PPTok.isNot(tok::eof)) {
146 while (!RawTok.isAtStartOfLine() && RawTok.isNot(tok::eof))
/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DMacroArgs.cpp110 for (; ArgPtr->isNot(tok::eof); ++ArgPtr)
129 if (Result->is(tok::eof))
141 return getPreExpArgument(VariadicArgIndex, PP).front().isNot(tok::eof);
150 for (; ArgTok->isNot(tok::eof); ++ArgTok)
189 } while (Result.back().isNot(tok::eof));
223 for (; ArgToks->isNot(tok::eof); ++ArgToks) {
/freebsd-11-stable/contrib/libstdc++/include/std/
H A Dstd_streambuf.h289 * @return The next character, or eof.
292 * @c traits::eof(), so does this function. Otherwise, @c sgetc().
297 int_type __ret = traits_type::eof();
306 * @return The next character, or eof.
328 * @return The next character, or eof.
632 * @c underflow() will not return @c traits::eof() until at least that
639 * calls [to underflow or uflow] will not return @c eof() but
655 * have been copied, or when @c traits::eof() would be copied.
670 * next available character is returned, or @c traits::eof() to
680 * @note Base class version does nothing, returns eof()
[all...]
/freebsd-11-stable/contrib/groff/src/preproc/pic/
H A Dmain.cpp49 int eof; member in class:top_input
59 top_input::top_input(FILE *p) : fp(p), bol(1), eof(0)
67 if (eof)
99 eof = 1;
113 eof = 1;
138 eof = 1;
148 if (eof)
171 eof = 1;
186 eof = 1;
/freebsd-11-stable/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp218 Eof.setKind(tok::eof);
330 DefArgEnd.setKind(tok::eof);
362 if (Tok.isNot(tok::eof) || Tok.getEofData() != Param) {
377 while (Tok.isNot(tok::eof))
380 if (Tok.is(tok::eof) && Tok.getEofData() == Param)
403 ExceptionSpecEnd.setKind(tok::eof);
445 if (Tok.isNot(tok::eof) || Tok.getEofData() != LM.Method)
458 while (Tok.isNot(tok::eof))
462 if (Tok.is(tok::eof) && Tok.getEofData() == LM.Method)
510 BodyEnd.setKind(tok::eof);
[all...]
/freebsd-11-stable/contrib/groff/src/utils/tfmtodit/
H A Dtfmtodit.cpp429 goto eof;
431 goto eof;
435 goto eof;
449 goto eof;
454 goto eof;
459 goto eof;
465 goto eof;
472 goto eof;
479 goto eof;
486 goto eof;
[all...]

Completed in 238 milliseconds

12345678