Searched refs:hex_digits (Results 1 – 3 of 3) sorted by relevance
130 hex_digits = HEX_DIGITS200 while source[i] in hex_digits:
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()