Searched refs:d1 (Results 1 – 2 of 2) sorted by path
853 uint8_t d0, d1; in nxt_http_arguments_parse() local921 d1 = nxt_hex2int[p[2]]; in nxt_http_arguments_parse()923 if (nxt_slow_path((d0 | d1) >= 16)) { in nxt_http_arguments_parse()928 *dst = (d0 << 4) + d1; in nxt_http_arguments_parse()1110 uint8_t d0, d1; in nxt_http_field_hash() local1153 d1 = nxt_hex2int[src[2]]; in nxt_http_field_hash()1156 if (nxt_slow_path((d0 | d1) >= 16)) { in nxt_http_field_hash()1160 c = (d0 << 4) + d1; in nxt_http_field_hash()
523 uint8_t d0, d1; in nxt_decode_uri() local538 d1 = 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() local574 d1 = 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() local723 d1 = nxt_hex2int[*++src]; in nxt_is_complex_uri_encoded()[all …]