Home
last modified time | relevance | path

Searched refs:nextc (Results 1 – 14 of 14) sorted by relevance

/freebsd/contrib/libc-vis/
H A Dvis.c163 do_hvis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra) in do_hvis() argument
171 dst = do_svis(dst, c, flags, nextc, extra); in do_hvis()
186 do_mvis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra) in do_mvis() argument
190 ((iswspace(c) && (nextc == L'\r' || nextc == L'\n')) || in do_mvis()
199 dst = do_svis(dst, c, flags, nextc, extra); in do_mvis()
207 do_mbyte(wchar_t *dst, wint_t c, int flags, wint_t nextc, int iswextra) in do_mbyte() argument
237 if (iswoctal(nextc)) { in do_mbyte()
304 do_svis(wchar_t *dst, wint_t c, int flags, wint_t nextc, const wchar_t *extra) in do_svis() argument
325 flags, nextc, iswextra); in do_svis()
699 svis(char *mbdst, int c, int flags, int nextc, const char *mbextra) in svis() argument
[all …]
/freebsd/crypto/heimdal/lib/roken/
H A Dvis.c153 do_hvis(char *dst, int c, int flag, int nextc, const char *extra) in do_hvis() argument
160 dst = do_svis(dst, c, flag, nextc, extra); in do_hvis()
175 do_svis(char *dst, int c, int flag, int nextc, const char *extra) in do_svis() argument
212 if (isoctal(nextc)) { in do_svis()
253 rk_svis(char *dst, int c, int flag, int nextc, const char *extra) in rk_svis() argument
265 dst = do_hvis(dst, c, flag, nextc, nextra); in rk_svis()
267 dst = do_svis(dst, c, flag, nextc, nextra); in rk_svis()
358 rk_vis(char *dst, int c, int flag, int nextc) in rk_vis() argument
371 dst = do_hvis(dst, uc, flag, nextc, extra); in rk_vis()
373 dst = do_svis(dst, uc, flag, nextc, extra); in rk_vis()
/freebsd/bin/sh/
H A Doutput.h42 char *nextc; member
79 #define outc(c, file) ((file)->nextc == (file)->bufend ? (emptyoutbuf(file), *(file)->nextc++ = (c)…
H A Doutput.c210 dest->nextc = dest->buf; in emptyoutbuf()
214 offset = dest->nextc - dest->buf; in emptyoutbuf()
220 dest->nextc = dest->buf + offset; in emptyoutbuf()
240 if (dest->buf == NULL || dest->nextc == dest->buf || dest->fd < 0) in flushout()
242 if (xwrite(dest->fd, dest->buf, dest->nextc - dest->buf) < 0) in flushout()
244 dest->nextc = dest->buf; in flushout()
251 output.nextc = output.buf; in freestdout()
H A Dinput.c80 const char *nextc; /* next char in buffer */ member
93 .nextc = basebuf,
437 parsefile->nextc = parsenextc; in pushfile()
464 parsenextc = parsefile->nextc; in popfile()
H A Deval.c1069 memout.nextc = memout.buf; in evalcommand()
1120 memout.nextc - memout.buf : 0; in evalcommand()
1122 memout.nextc = NULL; in evalcommand()
/freebsd/sys/crypto/aesni/
H A Daesni_wrap.c189 nextc(__m128i x) in nextc() function
226 ctr2 = nextc(ctr1); in aesni_encrypt_icm()
228 ctr3 = nextc(ctr2); in aesni_encrypt_icm()
230 ctr4 = nextc(ctr3); in aesni_encrypt_icm()
232 ctr5 = nextc(ctr4); in aesni_encrypt_icm()
234 ctr6 = nextc(ctr5); in aesni_encrypt_icm()
236 ctr7 = nextc(ctr6); in aesni_encrypt_icm()
238 ctr8 = nextc(ctr7); in aesni_encrypt_icm()
240 ctr1 = nextc(ctr8); in aesni_encrypt_icm()
263 ctr1 = nextc(ctr1); in aesni_encrypt_icm()
/freebsd/contrib/openbsm/compat/
H A Dvis.h81 vis(dst, c, flag, nextc) in vis() argument
83 int c, nextc;
155 if (isoctal(nextc)) {
/freebsd/contrib/byacc/
H A Dreader.c492 nextc(void) in nextc() function
646 c = nextc(); in copy_ident()
1707 c = nextc(); in get_tag()
1722 c = nextc(); in get_tag()
1757 c = nextc(); in declare_tokens()
1763 c = nextc(); in declare_tokens()
1796 c = nextc(); in declare_tokens()
1806 c = nextc(); in declare_tokens()
1874 int c = nextc(); in declare_argtypes()
1880 c = nextc(); in declare_argtypes()
[all …]
/freebsd/crypto/openssh/openbsd-compat/
H A Dvis.c62 vis(char *dst, int c, int flag, int nextc) in vis() argument
110 if (isoctal(nextc)) { in vis()
/freebsd/usr.sbin/rtadvd/
H A Dadvcap.c411 nextc: in tdecode()
418 goto nextc; in tdecode()
/freebsd/contrib/lua/src/
H A Dliolib.c438 static int nextc (RN *rn) { in nextc() function
456 return nextc(rn); in test2()
466 while ((hex ? isxdigit(rn->c) : isdigit(rn->c)) && nextc(rn)) in readdigits()
/freebsd/stand/lua/
H A Dconfig.lua162 goto nextc
206 ::nextc::
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common_interceptors.inc8957 INTERCEPTOR(char *, vis, char *dst, int c, int flag, int nextc) {
8959 COMMON_INTERCEPTOR_ENTER(ctx, vis, dst, c, flag, nextc);
8960 char *end = REAL(vis)(dst, c, flag, nextc);
8966 INTERCEPTOR(char *, nvis, char *dst, SIZE_T dlen, int c, int flag, int nextc) {
8968 COMMON_INTERCEPTOR_ENTER(ctx, nvis, dst, dlen, c, flag, nextc);
8969 char *end = REAL(nvis)(dst, dlen, c, flag, nextc);
9047 INTERCEPTOR(char *, svis, char *dst, int c, int flag, int nextc,
9050 COMMON_INTERCEPTOR_ENTER(ctx, svis, dst, c, flag, nextc, extra);
9053 char *end = REAL(svis)(dst, c, flag, nextc, extra);
9058 INTERCEPTOR(char *, snvis, char *dst, SIZE_T dlen, int c, int flag, int nextc,
[all …]