Home
last modified time | relevance | path

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

/third_party/openssl/test/
Derrtest.c24 # define IS_HEX(ch) ((ch >= '0' && ch <='9') || (ch >= 'A' && ch <='F')) macro
102 if (!TEST_true(IS_HEX(*p))) in test_print_error_format()
/third_party/nghttp2/third-party/url-parser/
Durl_parser.c181 #define IS_HEX(c) (IS_NUM(c) || (LOWER(c) >= 'a' && LOWER(c) <= 'f')) macro
407 if (IS_HEX(ch) || ch == ':' || ch == '.') { in http_parse_host_char()