Searched refs:lastc (Results 1 - 17 of 17) sorted by relevance

/freebsd-9.3-release/usr.bin/finger/
H A Dnet.c111 int c, lastc; local
167 lastc = 0;
178 if (lastc == '\r') /* ^M^M - skip dupes */
181 lastc = '\r';
187 if (lastc != '\r' || c != '\n')
188 lastc = c;
190 lastc = '\n';
198 lastc = '\r';
200 if (lastc == '\n' || lastc
[all...]
H A Dlprint.c298 char *p, lastc; local
301 lastc = '\0';
323 vputc(lastc = *p);
324 if (lastc != '\n')
338 vputc(lastc = ch);
339 if (lastc != '\n')
/freebsd-9.3-release/contrib/libreadline/
H A Disearch.c109 cxt->lastc = 0;
307 c = cxt->lastc = rl_read_key ();
312 c = cxt->lastc = _rl_read_mbstring (cxt->lastc, cxt->mb, MB_LEN_MAX);
344 cxt->lastc = (cxt->sflags & SF_REVERSE) ? -1 : -2;
346 cxt->lastc = (cxt->sflags & SF_REVERSE) ? -2 : -1;
348 cxt->lastc = -3;
350 cxt->lastc = -4;
352 cxt->lastc = -5;
354 cxt->lastc
[all...]
H A Dreadline.c450 static int lastc, eof_found; local
453 lastc = -1;
507 if (((c == _rl_eof_char && lastc != c) || c == EOF) && !rl_end)
518 lastc = c;
H A Drlprivate.h71 int lastc; member in struct:__rl_search_context
/freebsd-9.3-release/contrib/llvm/lib/Support/
H A Dregengine.inc691 int lastc; /* previous c */
704 lastc = c;
709 /* is there an EOL and/or BOL between lastc and c? */
712 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
713 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
729 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
733 if ( (lastc != OUT && ISWORD(lastc)) &&
776 int lastc; /* previou
[all...]
/freebsd-9.3-release/usr.bin/make/
H A Dparse.c1756 int c, lastc; local
1763 lastc = '\0';
1765 while (((c = ParseReadc()) != '\n' || lastc == '\\')
1767 if (skip && c == '#' && lastc != '\\') {
1792 lastc = c;
1816 * buffered in 'lastc', which is '\0' when no characters have been
1818 * character and lastc holds a character that should be added to
1833 int lastc; /* The most-recent character */ local
1847 lastc = '\0';
1867 lastc
[all...]
/freebsd-9.3-release/lib/libc/regex/
H A Dengine.c779 wint_t lastc; /* previous c */ local
804 lastc = c;
813 /* is there an EOL and/or BOL between lastc and c? */
816 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
817 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
833 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
837 if ( (lastc != OUT && ISWORD(lastc)) &&
885 wint_t lastc; /* previou local
[all...]
/freebsd-9.3-release/usr.bin/grep/
H A Dgrep.c337 int c, lastc, needpattern, newarg, prevoptind; local
371 lastc = '\0';
416 if (newarg || !isdigit(lastc))
659 lastc = c;
/freebsd-9.3-release/sys/dev/ath/ath_hal/
H A Dah_regdomain.c403 int low_adj, hi_adj, channelSep, lastc; local
508 lastc = 0;
544 if (lastc && channelSep &&
545 (c-lastc) < channelSep)
547 lastc = c;
/freebsd-9.3-release/sys/sys/
H A Dttyqueue.h82 char *lastc);
/freebsd-9.3-release/usr.bin/tip/tip/
H A Dcmds.c305 char *pc, lastc; local
326 lastc = '\0';
338 lastc = c;
376 if (lastc != '\n' && !boolean(value(RAWFTP)))
/freebsd-9.3-release/usr.bin/csup/
H A Dstream.c167 char lastc; member in struct:md5filter
1163 mf->lastc = ';';
1233 mf->lastc = *ptr;
1253 if (mf->lastc == '@') {
1262 !IS_SPECIAL(mf->lastc)) {
1288 mf->lastc = '@';
/freebsd-9.3-release/bin/sh/
H A Dexpand.c472 char lastc; local
490 lastc = '\0';
504 lastc = *p++;
505 if (lastc != '\0') {
506 if (lastc == '\n') {
514 if (quotes && syntax[(int)lastc] == CCTL)
516 USTPUTC(lastc, dest);
/freebsd-9.3-release/contrib/amd/hlfsd/
H A Dhomedir.c778 plt_dump(uid2home_t *lastc, pid_t this) argument
786 (int) (lastc ? lastc->child : -999));
/freebsd-9.3-release/sys/kern/
H A Dtty_inq.c345 char *lastc)
359 *lastc = tib->tib_data[boff];
344 ttyinq_findchar(struct ttyinq *ti, const char *breakc, size_t maxlen, char *lastc) argument
H A Dtty_ttydisc.c116 unsigned char lastc = _POSIX_VDISABLE; local
152 &lastc);
168 if (CMP_CC(VEOF, lastc))
178 } while (uio->uio_resid > 0 && lastc == _POSIX_VDISABLE);

Completed in 157 milliseconds