Searched refs:hex_digits (Results 1 – 2 of 2) sorted by relevance
362 const char hex_digits[] = "0123456789abcdef"; in escape_byte_string() local389 *p++ = hex_digits[(c >> 4) & 0xf]; in escape_byte_string()390 *p++ = hex_digits[c & 0xf]; in escape_byte_string()
290 static char *hex_digits = "0123456789abcdef"; in hex_escape_string() local320 *p++ = hex_digits[(c >> 4) & 0xf]; in hex_escape_string()321 *p++ = hex_digits[c & 0xf]; in hex_escape_string()