Home
last modified time | relevance | path

Searched refs:hex (Results 1 – 3 of 3) sorted by last modified time

/unit/test/
H A Dtest_proxy_chunked.py167 body=chunks([('1', hex(i % 16)[2:]) for i in range(4096)]),
/unit/src/
H A Dnxt_sprintf.c80 const u_char *hex; member
192 spf.hex = NULL; in nxt_vsprintf()
222 spf.hex = HEXADECIMAL; in nxt_vsprintf()
228 spf.hex = hexadecimal; in nxt_vsprintf()
257 spf.hex = NULL; in nxt_vsprintf()
287 if ((nxt_msec_int_t) ms == -1 && spf.hex == NULL) { in nxt_vsprintf()
426 spf.hex = NULL; in nxt_vsprintf()
456 spf.hex = HEXADECIMAL; in nxt_vsprintf()
518 spf.hex = HEXADECIMAL; in nxt_vsprintf()
583 if (spf->hex == NULL) { in nxt_integer()
[all …]
H A Dnxt_string.c601 static const u_char hex[16] = "0123456789ABCDEF"; in nxt_encode_uri() local
627 *dst++ = hex[*src >> 4]; in nxt_encode_uri()
628 *dst++ = hex[*src & 0xf]; in nxt_encode_uri()
647 static const u_char hex[16] = "0123456789ABCDEF"; in nxt_encode_complex_uri() local
692 *dst++ = hex[ch >> 4]; in nxt_encode_complex_uri()
693 *dst++ = hex[ch & 0xf]; in nxt_encode_complex_uri()