Searched refs:d0 (Results 1 – 2 of 2) sorted by last modified time
882 uint8_t d0, d1; in nxt_http_arguments_parse() local949 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() local1178 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()
523 uint8_t d0, d1; in nxt_decode_uri() local537 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() local573 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() local722 d0 = nxt_hex2int[*++src]; in nxt_is_complex_uri_encoded()[all …]