HomeSort by: relevance | last modified time | path
    Searched refs:lastc (Results 1 - 23 of 23) sorted by relevancy

  /src/usr.bin/finger/
net.c 70 int c, lastc; local
77 lastc = 0;
138 if (lastc == '\r') /* ^M^M - skip dupes */
141 lastc = '\r';
147 if (lastc != '\r' || c != '\n')
148 lastc = c;
150 lastc = '\n';
156 if (lastc != '\n')
lprint.c 333 int ch, cnt, lastc; local
337 lastc = 0;
356 vputc(lastc = (unsigned char)*p);
357 if (lastc != '\n')
369 vputc(lastc = ch);
370 if (lastc != '\n')
  /src/lib/libc/gen/
shquote.c 133 wchar_t c, lastc; local
137 char c, lastc;
144 lastc = 0;
157 lastc = c;
177 if (lastc != '\'')
  /src/usr.bin/mail/
mime_header.c 231 int lastc; local
239 lastc = (unsigned char)' ';
243 if (is_FWS(lastc) && p[0] == '=' && p[1] == '?' &&
249 lastc = (unsigned char)*p0;
253 lastc = (unsigned char)*p;
275 int lastc; local
281 lastc = ' ';
287 if (is_FWS(lastc) && p[0] == '=' && p[1] == '?' &&
290 lastc = (unsigned char)*p1;
315 lastc = ')'
440 int lastc; local
    [all...]
mime_attach.c 232 int c, lastc, state; local
238 lastc = EOF;
252 if (is_WSP(lastc))
258 else if ((c < 0x20 && c != '\t') || c == 0x7f || lastc == '\r')
260 lastc = c;
262 if (lastc == EOF) /* no characters read */
265 if (lastc != '\n' || state != MAILMSG_CLEAN)
  /src/usr.bin/skeyinit/
skeyinit.c 55 char lastc, me[LOGIN_NAME_MAX+1], *p, *pw, *ht = NULL; local
189 lastc = skey.seed[l - 1];
190 if (isdigit((unsigned char)lastc) && lastc != '9') {
193 defaultseed[l - 1] = lastc + 1;
195 if (isdigit((unsigned char)lastc) && lastc == '9' &&
  /src/external/apache2/llvm/dist/llvm/lib/Support/
regengine.inc 691 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; /* previous c *
    [all...]
  /src/external/bsd/nvi/dist/regex/
engine.c 722 RCHAR_T lastc; /* previous c */ local
735 lastc = c;
740 /* is there an EOL and/or BOL between lastc and c? */
743 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
744 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
760 if ( (flag == BOL || (lastc != OUT && !ISWORD(lastc))) &&
764 if ( (lastc != OUT && ISWORD(lastc)) &&
813 RCHAR_T lastc; /* previous c * local
    [all...]
  /src/external/gpl2/gmake/dist/
vmsjobs.c 120 register struct child *lastc, *c; local
132 lastc = 0;
134 for (c = children; c != 0 && c != child; lastc = c, c = c->next)
189 if (lastc == 0)
192 lastc->next = c->next;
job.c 479 register struct child *lastc, *c;
691 lastc = 0;
692 for (c = children; c != 0; lastc = c, c = c->next)
822 if (lastc == 0)
825 lastc->next = c->next;
475 register struct child *lastc, *c; local
  /src/bin/sh/
show.c 80 char lastc; /* the last non-white character output */ member in struct:traceinfo
181 tracedata.lastc = '\0';
338 if (fp->lastc != '&')
404 if (fp->lastc != '&')
413 if (fp->lastc != '&')
429 if (fp->lastc != '&')
445 if (fp->lastc != '&')
468 if (fp->lastc != '&')
475 if (fp->lastc != '&')
856 fp->lastc = c
    [all...]
expand.c 631 char lastc; local
669 lastc = *p++;
670 if (lastc != '\0') {
671 if (lastc == '\n') /* don't save \n yet */
704 if ((quotes && quoted && NEEDESC(lastc)) ||
705 ISCTL(lastc))
707 USTPUTC(lastc, dest);
  /src/lib/libc/regex/
engine.c 887 wint_t lastc; /* previous c */ local
918 lastc = c;
930 /* is there an EOL and/or BOL between lastc and c? */
933 if ( (lastc == '\n' && m->g->cflags&REG_NEWLINE) ||
934 (lastc == OUT && !(m->eflags&REG_NOTBOL)) ) {
943 if (lastc == OUT && (m->eflags & REG_NOTBOL) == 0) {
961 if ( (flagch == BOL || (lastc != OUT && !ISWORD(lastc))) &&
965 if ( (lastc != OUT && ISWORD(lastc)) &
    [all...]
  /src/usr.bin/grep/
grep.c 324 int c, lastc, needpattern, newarg, prevoptind; local
363 lastc = '\0';
407 if (newarg || !isdigit(lastc))
638 lastc = c;
  /src/usr.bin/tip/
cmds.c 291 char lastc; local
313 lastc = '\0';
326 lastc = c;
366 if (lastc != '\n' && !boolean(value(RAWFTP)))
  /src/external/bsd/am-utils/dist/hlfsd/
homedir.c 779 plt_dump(uid2home_t *lastc, pid_t this)
787 (int) (lastc ? lastc->child : -999));
  /src/games/snake/snake/
snake.c 264 int lastc = 0; local
281 c = lastc;
285 lastc = c;
  /src/usr.bin/diff/
diffreg.c 1195 int i, j, c, lastc, col, nc, newcol; local
1240 lastc = '\0';
1280 lastc == '.') {
1299 lastc = c;
  /src/external/gpl3/gcc.old/dist/libphobos/src/std/
string.d 5903 dchar lastc;
5974 if (mod_s && modified && newc == lastc)
5979 lastc = newc;
5984 lastc = c;
6410 C lastc;
6420 lastc = lastc.init;
6427 lastc = dex[c - 'A'];
6434 lastc = lastc.init
    [all...]
path.d 1934 C lastc = c;
1982 if (lastc == dirSeparator[0] || lastc == lastc.init)
  /src/sys/external/isc/atheros_hal/dist/
ah_regdomain.c 2472 int low_adj, hi_adj, channelSep, lastc; local
2572 lastc = 0;
2617 if (lastc && channelSep &&
2618 (c-lastc) < channelSep)
2632 lastc = c;
  /src/external/gpl3/binutils/dist/ld/
lexsup.c 1912 char lastc = config.map_filename[strlen (config.map_filename) - 1]; local
1914 IS_DIR_SEPARATOR (lastc) ? "" : "/",
  /src/external/gpl3/binutils.old/dist/ld/
lexsup.c 1923 char lastc = config.map_filename[strlen (config.map_filename) - 1]; local
1925 IS_DIR_SEPARATOR (lastc) ? "" : "/",

Completed in 88 milliseconds