Searched refs:LOWER_XDIGITS (Results 1 – 5 of 5) sorted by relevance
41 #define LOWER_XDIGITS "0123456789abcdef" macro48 *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()
178 *p-- = util::LOWER_XDIGITS[b & 0xf]; in write_hex()179 *p-- = util::LOWER_XDIGITS[b >> 4]; in write_hex()
408 constexpr char LOWER_XDIGITS[] = "0123456789abcdef"; variable420 *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()
200 static constexpr char LOWER_XDIGITS[] = "0123456789abcdef"; variable206 *it++ = LOWER_XDIGITS[c >> 4]; in format_hex()207 *it++ = LOWER_XDIGITS[c & 0xf]; in format_hex()
508 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()