Searched refs:ishex (Results 1 – 6 of 6) sorted by relevance
102 #undef ishex103 #define ishex(c) (isdigit(c) || strchr("abcdefABCDEF", c)) macro118 if (!ishex(p[end]))160 if (ishex(p[end]))
745 _Bool gotmantdig = 0, ishex = 0; in parsefloat() local833 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()
938 _Bool gotmantdig = 0, ishex = 0; in parsefloat() local1019 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()
29 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \ macro423 if (yyexpectaddr == 1 && isbuilding == 0 && (ishex(c) || c == ':')) { in yylex()439 } while ((ishex(c) || c == ':' || c == '.') && in yylex()468 } while (ishex(n)); in yylex()
178 int isneg, ishex; in s2i_ASN1_INTEGER() local193 ishex = 1; in s2i_ASN1_INTEGER()195 ishex = 0; in s2i_ASN1_INTEGER()197 if (ishex) in s2i_ASN1_INTEGER()
157 static int ishex (int ch, int *val);1218 ishex (int ch, int *val) in ishex() function1274 while (ishex (*buff, &nibble)) in unpack_varlen_hex()1287 ishex (*buf++, val); in unpack_nibble()