Searched refs:ishex (Results 1 – 6 of 6) sorted by relevance
101 #undef ishex in v_increment()102 #define ishex(c) (ISXDIGIT(c)) in v_increment() macro117 if (!ishex(p[end])) in v_increment()159 if (ishex(p[end])) in v_increment()
29 #define ishex(c) (ISDIGIT(c) || ((c) >= 'a' && (c) <= 'f') || \ macro440 (ishex(c) || isdigit(c) || c == ':')) { in yylex()462 } while ((ishex(c) || c == ':' || c == '.') && in yylex()483 for (s = yystr; *s && ishex(*s); s++) in yylex()509 } while (ishex(n)); in yylex()
803 _Bool gotmantdig = 0, ishex = 0; in parsefloat() local891 ishex = 1; in parsefloat()898 if ((ishex && iswxdigit(c)) || iswdigit(c)) in parsefloat()909 if (((c == 'E' || c == 'e') && !ishex) || in parsefloat()910 ((c == 'P' || c == 'p') && ishex)) { in parsefloat()915 } else if ((ishex && iswxdigit(c)) || iswdigit(c)) { in parsefloat()
935 _Bool gotmantdig = 0, ishex = 0; in parsefloat() local1016 ishex = 1; in parsefloat()1023 if ((ishex && isxdigit(c)) || isdigit(c)) { in parsefloat()1052 if (((c == 'E' || c == 'e') && !ishex) || in parsefloat()1053 ((c == 'P' || c == 'p') && ishex)) { in parsefloat()1058 } else if ((ishex && isxdigit(c)) || isdigit(c)) { in parsefloat()
179 int isneg, ishex; in s2i_ASN1_INTEGER() local194 ishex = 1; in s2i_ASN1_INTEGER()196 ishex = 0; in s2i_ASN1_INTEGER()198 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()