Searched refs:hex_digits (Results 1 – 9 of 9) sorted by relevance
43 static const char hex_digits[] = "0123456789abcdef"; in _mesa_sha1_format() local47 buf[i] = hex_digits[sha1[i >> 1] >> 4]; in _mesa_sha1_format()48 buf[i + 1] = hex_digits[sha1[i >> 1] & 0x0f]; in _mesa_sha1_format()
83 static const char hex_digits[] = "0123456789abcdef"; in disk_cache_format_hex_id() local87 buf[i] = hex_digits[hex_id[i >> 1] >> 4]; in disk_cache_format_hex_id()88 buf[i + 1] = hex_digits[hex_id[i >> 1] & 0x0f]; in disk_cache_format_hex_id()
717 ecma_char_t hex_digits = 0; in ecma_builtin_global_object_unescape() local739 hex_digits = (ecma_char_t) (hex_digits * 16 + (ecma_char_t) lit_char_hex_to_int (chr)); in ecma_builtin_global_object_unescape()754 chr = hex_digits; in ecma_builtin_global_object_unescape()755 hex_digits = 0; in ecma_builtin_global_object_unescape()
48 static char *hex_digits = "0123456789abcdef"; in escape_string() local61 g_string_append_c (str, hex_digits[(c >> 4) & 0xf]); in escape_string()62 g_string_append_c (str, hex_digits[c & 0xf]); in escape_string()
281 const char hex_digits[] = "0123456789abcdef"; in escape_byte_string() local308 *p++ = hex_digits[(c >> 4) & 0xf]; in escape_byte_string()309 *p++ = hex_digits[c & 0xf]; in escape_byte_string()
317 static char *hex_digits = "0123456789abcdef"; in hex_escape_buffer() local344 *p++ = hex_digits[(c >> 4) & 0xf]; in hex_escape_buffer()345 *p++ = hex_digits[c & 0xf]; in hex_escape_buffer()
127 hex_digits = HEX_DIGITS197 while source[i] in hex_digits:
853 std::string hex_digits(first, last); in operator ()() local855 if (hex_digits.size() == 2 && *first > '0' && *first <= '7') { in operator ()()858 (char)strtol(hex_digits.c_str(), 0, 16), state.phrase.get()); in operator ()()861 state.phrase << "&#x" << hex_digits << ";"; in operator ()()
58 static const gchar hex_digits[] = "0123456789abcdef"; variable189 retval[2 * i] = hex_digits[byte >> 4]; in digest_to_string()190 retval[2 * i + 1] = hex_digits[byte & 0xf]; in digest_to_string()