Home
last modified time | relevance | path

Searched refs:IS_NUM (Results 1 – 2 of 2) sorted by relevance

/Zephyr-Core-3.7.0/subsys/net/lib/http/
Dhttp_parser_url.c113 #define IS_NUM(c) ((c) >= '0' && (c) <= '9') macro
114 #define IS_ALPHANUM(c) (IS_ALPHA(c) || IS_NUM(c))
115 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f'))
369 if (IS_NUM(ch)) { in http_parse_host_char()
Dhttp_parser.c267 #define IS_NUM(c) ((c) >= '0' && (c) <= '9') macro
268 #define IS_ALPHANUM(c) (IS_ALPHA(c) || IS_NUM(c))
269 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f'))
526 if (UNLIKELY(!IS_NUM(ch))) { in header_states()
929 if (!IS_NUM(ch)) { in parser_execute()
947 if (UNLIKELY(!IS_NUM(ch))) { in parser_execute()
963 if (UNLIKELY(!IS_NUM(ch))) { in parser_execute()
980 if (!IS_NUM(ch)) { in parser_execute()
994 if (!IS_NUM(ch)) { in parser_execute()
1422 if (UNLIKELY(!IS_NUM(ch))) { in parser_execute()
[all …]