Searched refs:LOWER_XDIGITS (Results 1 – 4 of 4) sorted by relevance
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()
155 static constexpr char LOWER_XDIGITS[] = "0123456789abcdef"; variable161 *it++ = LOWER_XDIGITS[c >> 4]; in format_hex()162 *it++ = LOWER_XDIGITS[c & 0xf]; in format_hex()
442 res[i * 2] = LOWER_XDIGITS[c >> 4]; in format_hex()443 res[i * 2 + 1] = LOWER_XDIGITS[c & 0x0f]; in format_hex()454 *p++ = LOWER_XDIGITS[c >> 4]; in format_hex()455 *p++ = LOWER_XDIGITS[c & 0xf]; in format_hex()