Home
last modified time | relevance | path

Searched refs:d0 (Results 1 – 2 of 2) sorted by last modified time

/unit/src/
H A Dnxt_http_request.c935 uint8_t d0, d1; in nxt_http_arguments_parse() local
1002 d0 = nxt_hex2int[p[1]]; in nxt_http_arguments_parse()
1005 if (nxt_slow_path((d0 | d1) >= 16)) { in nxt_http_arguments_parse()
1010 *dst = (d0 << 4) + d1; in nxt_http_arguments_parse()
1189 uint8_t d0, d1; in nxt_http_field_hash() local
1231 d0 = nxt_hex2int[src[1]]; in nxt_http_field_hash()
1235 if (nxt_slow_path((d0 | d1) >= 16)) { in nxt_http_field_hash()
1239 c = (d0 << 4) + d1; in nxt_http_field_hash()
H A Dnxt_string.c523 uint8_t d0, d1; in nxt_decode_uri() local
537 d0 = nxt_hex2int[*src++]; in nxt_decode_uri()
540 if (nxt_slow_path((d0 | d1) >= 16)) { in nxt_decode_uri()
544 ch = (d0 << 4) + d1; in nxt_decode_uri()
558 uint8_t d0, d1; in nxt_decode_uri_plus() local
573 d0 = nxt_hex2int[*src++]; in nxt_decode_uri_plus()
576 if (nxt_slow_path((d0 | d1) >= 16)) { in nxt_decode_uri_plus()
580 ch = (d0 << 4) + d1; in nxt_decode_uri_plus()
709 uint8_t d0, d1; in nxt_is_complex_uri_encoded() local
722 d0 = nxt_hex2int[*++src]; in nxt_is_complex_uri_encoded()
[all …]