Home
last modified time | relevance | path

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

/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.h196 static constexpr char LOWER_XDIGITS[] = "0123456789abcdef"; variable
202 *it++ = LOWER_XDIGITS[c >> 4]; in format_hex()
203 *it++ = LOWER_XDIGITS[c & 0xf]; in format_hex()
Dutil.cc466 res[i * 2] = LOWER_XDIGITS[c >> 4]; in format_hex()
467 res[i * 2 + 1] = LOWER_XDIGITS[c & 0x0f]; in format_hex()
478 *p++ = LOWER_XDIGITS[c >> 4]; in format_hex()
479 *p++ = LOWER_XDIGITS[c & 0xf]; in format_hex()