Home
last modified time | relevance | path

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

/freebsd-9-stable/contrib/nvi/vi/
Dv_increment.c102 #undef ishex
103 #define ishex(c) (isdigit(c) || strchr("abcdefABCDEF", c)) macro
118 if (!ishex(p[end]))
160 if (ishex(p[end]))
/freebsd-9-stable/lib/libc/stdio/
Dvfwscanf.c745 _Bool gotmantdig = 0, ishex = 0; in parsefloat() local
833 ishex = 1; in parsefloat()
840 if ((ishex && iswxdigit(c)) || iswdigit(c)) in parsefloat()
851 if (((c == 'E' || c == 'e') && !ishex) || in parsefloat()
852 ((c == 'P' || c == 'p') && ishex)) { in parsefloat()
857 } else if ((ishex && iswxdigit(c)) || iswdigit(c)) { in parsefloat()
Dvfscanf.c938 _Bool gotmantdig = 0, ishex = 0; in parsefloat() local
1019 ishex = 1; in parsefloat()
1026 if ((ishex && isxdigit(c)) || isdigit(c)) { in parsefloat()
1055 if (((c == 'E' || c == 'e') && !ishex) || in parsefloat()
1056 ((c == 'P' || c == 'p') && ishex)) { in parsefloat()
1061 } else if ((ishex && isxdigit(c)) || isdigit(c)) { in parsefloat()
/freebsd-9-stable/contrib/ipfilter/tools/
Dlexer.c29 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \ macro
423 if (yyexpectaddr == 1 && isbuilding == 0 && (ishex(c) || c == ':')) { in yylex()
439 } while ((ishex(c) || c == ':' || c == '.') && in yylex()
468 } while (ishex(n)); in yylex()
/freebsd-9-stable/crypto/openssl/crypto/x509v3/
Dv3_utl.c178 int isneg, ishex; in s2i_ASN1_INTEGER() local
193 ishex = 1; in s2i_ASN1_INTEGER()
195 ishex = 0; in s2i_ASN1_INTEGER()
197 if (ishex) in s2i_ASN1_INTEGER()
/freebsd-9-stable/contrib/gdb/gdb/
Dremote.c157 static int ishex (int ch, int *val);
1218 ishex (int ch, int *val) in ishex() function
1274 while (ishex (*buff, &nibble)) in unpack_varlen_hex()
1287 ishex (*buf++, val); in unpack_nibble()