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()
196 static constexpr char LOWER_XDIGITS[] = "0123456789abcdef"; variable202 *it++ = LOWER_XDIGITS[c >> 4]; in format_hex()203 *it++ = LOWER_XDIGITS[c & 0xf]; in format_hex()
466 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()