Home
last modified time | relevance | path

Searched refs:nextchar (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/file/src/
H A Dfile.c602 wchar_t nextchar; in fname_print() local
608 bytesconsumed = mbrtowc(&nextchar, inname, n, &state); in fname_print()
611 nextchar = *inname++; in fname_print()
614 file_octal(CAST(unsigned char, nextchar)); in fname_print()
619 if (iswprint(nextchar)) { in fname_print()
620 printf("%lc", (wint_t)nextchar); in fname_print()
624 file_octal(CAST(unsigned char, nextchar)); in fname_print()
683 wchar_t nextchar; in file_mbswidth() local
689 bytesconsumed = mbrtowc(&nextchar, s, n, &state); in file_mbswidth()
692 nextchar = *s; in file_mbswidth()
[all …]
H A Dfuncs.c592 wchar_t nextchar; in file_getbuffer() local
603 bytesconsumed = mbrtowc(&nextchar, op, in file_getbuffer()
611 if (iswprint(nextchar)) { in file_getbuffer()
/freebsd/sbin/ipf/common/
H A Dlexer.c196 nextchar: in yylex()
224 goto nextchar; in yylex()
236 goto nextchar; in yylex()
247 goto nextchar; in yylex()
298 goto nextchar; in yylex()
532 goto nextchar; in yylex()
/freebsd/contrib/bearssl/src/x509/
H A Dasn1.t060 : parse-number ( -- val nextchar )
90 parse-number { nextchar }
94 begin nextchar `. = while
95 parse-number >nextchar
/freebsd/contrib/ofed/opensm/opensm/
H A Dosm_torus.c760 char *val, *nextchar; in parse_size() local
765 *tsz = strtoul(val, &nextchar, 0); in parse_size()
767 if (*nextchar == 't' || *nextchar == 'T') in parse_size()
769 else if (*nextchar == 'm' || *nextchar == 'M') in parse_size()
855 char *val, *nextchar; in parse_unsigned() local
860 *result = strtoul(val, &nextchar, 0); in parse_unsigned()