Home
last modified time | relevance | path

Searched refs:LOWER_XDIGITS (Results 1 – 5 of 5) sorted by relevance

/third_party/node/deps/ngtcp2/ngtcp2/lib/
Dngtcp2_str.c41 #define LOWER_XDIGITS "0123456789abcdef" macro
48 *p++ = (uint8_t)LOWER_XDIGITS[data[i] >> 4]; in ngtcp2_encode_hex()
49 *p++ = (uint8_t)LOWER_XDIGITS[data[i] & 0xf]; in ngtcp2_encode_hex()
137 *p++ = (uint8_t)LOWER_XDIGITS[d]; in write_hex_zsup()
150 *p++ = (uint8_t)LOWER_XDIGITS[d >> 4]; in write_hex_zsup()
151 *p++ = (uint8_t)LOWER_XDIGITS[d & 0xf]; in write_hex_zsup()
/third_party/nghttp2/src/
Dshrpx_log.h178 *p-- = util::LOWER_XDIGITS[b & 0xf]; in write_hex()
179 *p-- = util::LOWER_XDIGITS[b >> 4]; in write_hex()
Dshrpx_log.cc408 constexpr char LOWER_XDIGITS[] = "0123456789abcdef"; variable
420 *d_first++ = LOWER_XDIGITS[src[i] >> 4]; in copy_hex_low()
421 *d_first++ = LOWER_XDIGITS[src[i] & 0xf]; in copy_hex_low()
518 *d_first++ = LOWER_XDIGITS[c >> 4]; in copy_escape()
519 *d_first++ = LOWER_XDIGITS[c & 0xf]; in copy_escape()
Dutil.h200 static constexpr char LOWER_XDIGITS[] = "0123456789abcdef"; variable
206 *it++ = LOWER_XDIGITS[c >> 4]; in format_hex()
207 *it++ = LOWER_XDIGITS[c & 0xf]; in format_hex()
Dutil.cc508 res[i * 2] = LOWER_XDIGITS[c >> 4]; in format_hex()
509 res[i * 2 + 1] = LOWER_XDIGITS[c & 0x0f]; in format_hex()
520 *p++ = LOWER_XDIGITS[c >> 4]; in format_hex()
521 *p++ = LOWER_XDIGITS[c & 0xf]; in format_hex()