Searched refs:ishex (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/nvi/vi/
H A Dv_increment.c101 #undef ishex macro
102 #define ishex(c) (ISXDIGIT(c)) macro
117 if (!ishex(p[end]))
159 if (ishex(p[end]))
/freebsd-11-stable/lib/libc/stdio/
H A Dvfwscanf.c803 _Bool gotmantdig = 0, ishex = 0; local
891 ishex = 1;
898 if ((ishex && iswxdigit(c)) || iswdigit(c))
909 if (((c == 'E' || c == 'e') && !ishex) ||
910 ((c == 'P' || c == 'p') && ishex)) {
915 } else if ((ishex && iswxdigit(c)) || iswdigit(c)) {
H A Dvfscanf.c935 _Bool gotmantdig = 0, ishex = 0; local
1016 ishex = 1;
1023 if ((ishex && isxdigit(c)) || isdigit(c)) {
1052 if (((c == 'E' || c == 'e') && !ishex) ||
1053 ((c == 'P' || c == 'p') && ishex)) {
1058 } else if ((ishex && isxdigit(c)) || isdigit(c)) {
/freebsd-11-stable/contrib/ipfilter/tools/
H A Dlexer.c29 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \ macro
440 (ishex(c) || isdigit(c) || c == ':')) {
462 } while ((ishex(c) || c == ':' || c == '.') &&
483 for (s = yystr; *s && ishex(*s); s++)
509 } while (ishex(n));
/freebsd-11-stable/crypto/openssl/crypto/x509v3/
H A Dv3_utl.c179 int isneg, ishex; local
194 ishex = 1;
196 ishex = 0;
198 if (ishex)
/freebsd-11-stable/contrib/gdb/gdb/
H A Dremote.c157 static int ishex (int ch, int *val);
1222 ishex (int ch, int *val)
1278 while (ishex (*buff, &nibble))
1291 ishex (*buf++, val);
1218 ishex (int ch, int *val) function

Completed in 117 milliseconds