/src/lib/libc/gen/ |
shquote.c | 133 wchar_t c, lastc; local in function:__weak_alias 137 char c, lastc; 144 lastc = 0; 157 lastc = c; 177 if (lastc != '\'')
|
/src/usr.bin/finger/ |
net.c | 70 int c, lastc; local in function:netfinger 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 in function:show_text 337 lastc = 0; 356 vputc(lastc = (unsigned char)*p); 357 if (lastc != '\n') 369 vputc(lastc = ch); 370 if (lastc != '\n')
|
/src/usr.bin/skeyinit/ |
skeyinit.c | 55 char lastc, me[LOGIN_NAME_MAX+1], *p, *pw, *ht = NULL; local in function:main 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/usr.bin/mail/ |
mime_header.c | 231 int lastc; local in function:mime_decode_usfield 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 in function:decode_comment 281 lastc = ' '; 287 if (is_FWS(lastc) && p[0] == '=' && p[1] == '?' && 290 lastc = (unsigned char)*p1; 315 lastc = ')' 440 int lastc; local in function:mime_decode_sfield [all...] |
mime_attach.c | 232 int c, lastc, state; local in function:content_encoding_core 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/games/snake/snake/ |
snake.c | 264 int lastc = 0; local in function:mainloop 281 c = lastc; 285 lastc = c;
|
/src/usr.bin/tip/ |
cmds.c | 291 char lastc; local in function:transmit 313 lastc = '\0'; 326 lastc = c; 366 if (lastc != '\n' && !boolean(value(RAWFTP)))
|
/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 in function:expbackq 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/usr.bin/grep/ |
grep.c | 324 int c, lastc, needpattern, newarg, prevoptind; local in function:main 363 lastc = '\0'; 407 if (newarg || !isdigit(lastc)) 638 lastc = c;
|
/src/lib/libc/regex/ |
engine.c | 887 wint_t lastc; /* previous c */ local in function:walk 918 lastc = c; 930 /* is there an EOL and/or BOL between lastc and c? */ 933 if ( (lastc == '\n' && m->g->cflags®_NEWLINE) || 934 (lastc == OUT && !(m->eflags®_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/sys/external/isc/atheros_hal/dist/ |
ah_regdomain.c | 2472 int low_adj, hi_adj, channelSep, lastc; local in function:ath_hal_init_channels 2572 lastc = 0; 2617 if (lastc && channelSep && 2618 (c-lastc) < channelSep) 2632 lastc = c;
|