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.c882 uint8_t d0, d1; in nxt_http_arguments_parse() local
949 d0 = nxt_hex2int[p[1]]; in nxt_http_arguments_parse()
952 if (nxt_slow_path((d0 | d1) >= 16)) { in nxt_http_arguments_parse()
957 *dst = (d0 << 4) + d1; in nxt_http_arguments_parse()
1136 uint8_t d0, d1; in nxt_http_field_hash() local
1178 d0 = nxt_hex2int[src[1]]; in nxt_http_field_hash()
1182 if (nxt_slow_path((d0 | d1) >= 16)) { in nxt_http_field_hash()
1186 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 …]