Searched refs:d1 (Results 1 – 3 of 3) sorted by relevance
/unit/test/unit/ |
H A D | status.py | 26 def find_diffs(d1, d2): argument 27 if isinstance(d1, dict) and isinstance(d2, dict): 29 k: find_diffs(d1.get(k, 0), d2.get(k, 0)) 30 for k in d1 34 return d1 - d2
|
/unit/src/ |
H A D | nxt_string.c | 523 uint8_t d0, d1; in nxt_decode_uri() local 538 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() local 574 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() local 723 d1 = nxt_hex2int[*++src]; in nxt_is_complex_uri_encoded() [all …]
|
H A D | nxt_http_request.c | 882 uint8_t d0, d1; in nxt_http_arguments_parse() local 950 d1 = nxt_hex2int[p[2]]; 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 1179 d1 = nxt_hex2int[src[2]]; 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()
|