Lines Matching refs:IS_NUM
417 #define IS_NUM(c) ((c) >= '0' && (c) <= '9') macro
418 #define IS_ALPHANUM(c) (IS_ALPHA(c) || IS_NUM(c))
419 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f'))
844 if (!IS_NUM(ch)) { in http_parser_execute()
862 if (UNLIKELY(!IS_NUM(ch))) { in http_parser_execute()
879 if (UNLIKELY(!IS_NUM(ch))) { in http_parser_execute()
897 if (!IS_NUM(ch)) { in http_parser_execute()
912 if (!IS_NUM(ch)) { in http_parser_execute()
1203 if (UNLIKELY(!IS_NUM(ch))) { in http_parser_execute()
1221 if (UNLIKELY(!IS_NUM(ch))) { in http_parser_execute()
1245 if (UNLIKELY(!IS_NUM(ch))) { in http_parser_execute()
1497 if (UNLIKELY(!IS_NUM(ch))) { in http_parser_execute()
1595 if (UNLIKELY(!IS_NUM(ch))) { in http_parser_execute()
2267 if (IS_NUM(ch)) { in http_parse_host_char()