| /src/bin/sh/ |
| output.h | 42 char *nextc; member in struct:output 103 #define outc(c, file) (--(file)->nleft < 0? (emptyoutbuf(file), *(file)->nextc++ = (c)) : (*(file)->nextc++ = (c)))
|
| input.c | 94 const char *nextc; /* next char in buffer */ member in struct:parsefile 104 const char *parsenextc; /* copy of parsefile->nextc */ 120 basepf.nextc = basepf.buf = basebuf; 617 parsefile->nextc = parsenextc; 645 parsenextc = parsefile->nextc;
|
| error.c | 136 if (output.buf != NULL && output.nextc != output.buf && 137 output.nextc[-1] == '\n')
|
| output.c | 86 /* nextc nleft bufsize buf fd flags chain */ 123 file->nextc = block; 269 dest->nextc = out_junk; 275 dest->nextc = dest->buf; 286 dest->nextc = dest->buf + offset; 307 if (dest->buf == NULL || dest->nextc == dest->buf || dest->fd < 0) 310 (size_t)(dest->nextc - dest->buf))); 311 if (xwrite(dest->fd, dest->buf, dest->nextc - dest->buf) < 0) 313 dest->nextc = dest->buf; 372 strout.nextc = outbuf [all...] |
| eval.c | 1397 memout.nextc = memout.buf; 1486 backcmd->nleft = memout.nextc - memout.buf;
|
| jobs.c | 2046 char *nextc; local 2054 nextc = cmdnextc; 2144 *nextc++ = c; 2149 *nextc++ = '"'; 2153 cmdnextc = nextc;
|
| /src/usr.sbin/ldpd/ |
| ldp_command.c | 223 char *nextc = recvspace; local 260 strsep(&nextc, " "); 262 command_match(main_commands, cs->socket, recvspace, nextc); 363 char *nextc = recvspace; local 370 strsep(&nextc, " "); 372 command_match(set_commands, s, recvspace, nextc); 379 char *nextc = recvspace; local 386 strsep(&nextc, " "); 388 command_match(show_commands, s, recvspace, nextc);
|
| /src/lib/libc/gen/ |
| vis.c | 166 do_hvis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra) 174 dst = do_svis(dst, c, flags, nextc, extra); 189 do_mvis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra) 193 ((iswspace(c) && (nextc == L'\r' || nextc == L'\n')) || 202 dst = do_svis(dst, c, flags, nextc, extra); 210 do_mbyte(wchar_t *dst, wint_t c, int flags, wint_t nextc, int iswextra) 240 if (iswoctal(nextc)) { 302 * nextc: The character following 'c' 307 do_svis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra [all...] |
| /src/usr.sbin/rtadvd/ |
| advcap.c | 422 nextc: 429 goto nextc;
|
| /src/sys/arch/sparc64/sparc64/ |
| bsd_fdintr.s | 116 nextc: label 140 bne,a nextc ! if (--fdc->sc_tc) goto ...
|
| /src/sys/arch/sparc/sparc/ |
| bsd_fdintr.s | 213 nextc: label 248 bne,a nextc ! if (--fdc->sc_tc) goto ...
|
| /src/sys/sys/ |
| tty.h | 271 u_char *nextc(struct clist *, u_char *, int *);
|
| /src/sys/kern/ |
| tty_subr.c | 392 nextc(struct clist *clp, u_char *cp, int *c) function
|
| tty.c | 2477 cp = nextc(&tp->t_rawq, cp, &tabc)) 2544 for (cp = firstc(&tp->t_canq, &c); cp; cp = nextc(&tp->t_canq, cp, &c)) 2546 for (cp = firstc(&tp->t_rawq, &c); cp; cp = nextc(&tp->t_rawq, cp, &c))
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/ |
| sanitizer_common_interceptors.inc | 8609 INTERCEPTOR(char *, vis, char *dst, int c, int flag, int nextc) { 8611 COMMON_INTERCEPTOR_ENTER(ctx, vis, dst, c, flag, nextc); 8612 char *end = REAL(vis)(dst, c, flag, nextc); 8618 INTERCEPTOR(char *, nvis, char *dst, SIZE_T dlen, int c, int flag, int nextc) { 8620 COMMON_INTERCEPTOR_ENTER(ctx, nvis, dst, dlen, c, flag, nextc); 8621 char *end = REAL(nvis)(dst, dlen, c, flag, nextc); 8699 INTERCEPTOR(char *, svis, char *dst, int c, int flag, int nextc, 8702 COMMON_INTERCEPTOR_ENTER(ctx, svis, dst, c, flag, nextc, extra); 8705 char *end = REAL(svis)(dst, c, flag, nextc, extra); 8710 INTERCEPTOR(char *, snvis, char *dst, SIZE_T dlen, int c, int flag, int nextc, [all...] |