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

/freebsd-9.3-release/contrib/nvi/vi/
H A Dv_increment.c102 #undef ishex macro
103 #define ishex(c) (isdigit(c) || strchr("abcdefABCDEF", c)) macro
118 if (!ishex(p[end]))
160 if (ishex(p[end]))
/freebsd-9.3-release/lib/libc/stdio/
H A Dvfscanf.c940 _Bool gotmantdig = 0, ishex = 0; local
1021 ishex = 1;
1028 if ((ishex && isxdigit(c)) || isdigit(c)) {
1057 if (((c == 'E' || c == 'e') && !ishex) ||
1058 ((c == 'P' || c == 'p') && ishex)) {
1063 } else if ((ishex && isxdigit(c)) || isdigit(c)) {
H A Dvfwscanf.c745 _Bool gotmantdig = 0, ishex = 0; local
833 ishex = 1;
840 if ((ishex && iswxdigit(c)) || iswdigit(c))
851 if (((c == 'E' || c == 'e') && !ishex) ||
852 ((c == 'P' || c == 'p') && ishex)) {
857 } else if ((ishex && iswxdigit(c)) || iswdigit(c)) {
/freebsd-9.3-release/contrib/ipfilter/tools/
H A Dlexer.c29 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \ macro
423 if (yyexpectaddr == 1 && isbuilding == 0 && (ishex(c) || c == ':')) {
439 } while ((ishex(c) || c == ':' || c == '.') &&
468 } while (ishex(n));
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_utl.c178 int isneg, ishex; local
193 ishex = 1;
195 ishex = 0;
197 if (ishex)
/freebsd-9.3-release/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 138 milliseconds