Home
last modified time | relevance | path

Searched refs:hex_digits (Results 1 – 9 of 9) sorted by relevance

/third_party/mesa3d/src/util/
Dmesa-sha1.c43 static const char hex_digits[] = "0123456789abcdef"; in _mesa_sha1_format() local
47 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()
Ddisk_cache.h83 static const char hex_digits[] = "0123456789abcdef"; in disk_cache_format_hex_id() local
87 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()
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-global.c717 ecma_char_t hex_digits = 0; in ecma_builtin_global_object_unescape() local
739 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()
/third_party/glib/gio/
Dgio-tool-info.c48 static char *hex_digits = "0123456789abcdef"; in escape_string() local
61 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()
Dgfileattribute.c281 const char hex_digits[] = "0123456789abcdef"; in escape_byte_string() local
308 *p++ = hex_digits[(c >> 4) & 0xf]; in escape_byte_string()
309 *p++ = hex_digits[c & 0xf]; in escape_byte_string()
Dglocalfileinfo.c317 static char *hex_digits = "0123456789abcdef"; in hex_escape_buffer() local
344 *p++ = hex_digits[(c >> 4) & 0xf]; in hex_escape_buffer()
345 *p++ = hex_digits[c & 0xf]; in hex_escape_buffer()
/third_party/googletest/googlemock/scripts/generator/cpp/
Dtokenize.py127 hex_digits = HEX_DIGITS
197 while source[i] in hex_digits:
/third_party/boost/tools/quickbook/src/
Dactions.cpp853 std::string hex_digits(first, last); in operator ()() local
855 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 ()()
/third_party/glib/glib/
Dgchecksum.c58 static const gchar hex_digits[] = "0123456789abcdef"; variable
189 retval[2 * i] = hex_digits[byte >> 4]; in digest_to_string()
190 retval[2 * i + 1] = hex_digits[byte & 0xf]; in digest_to_string()