Home
last modified time | relevance | path

Searched refs:hex_digit (Results 1 – 8 of 8) sorted by relevance

/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-global.c402 ecma_char_t hex_digit = (ecma_char_t) (byte >> 4); in ecma_builtin_global_object_byte_to_hex() local
403 dest_p[1] = (lit_utf8_byte_t) ((hex_digit > 9) ? (hex_digit + ('A' - 10)) : (hex_digit + '0')); in ecma_builtin_global_object_byte_to_hex()
404 hex_digit = (lit_utf8_byte_t) (byte & 0xf); in ecma_builtin_global_object_byte_to_hex()
405 dest_p[2] = (lit_utf8_byte_t) ((hex_digit > 9) ? (hex_digit + ('A' - 10)) : (hex_digit + '0')); in ecma_builtin_global_object_byte_to_hex()
/third_party/gn/src/base/json/
Djson_parser.cc500 int hex_digit = 0; in ConsumeStringRaw() local
501 if (!HexStringToInt(*escape_sequence, &hex_digit) || in ConsumeStringRaw()
502 !IsValidCharacter(hex_digit)) { in ConsumeStringRaw()
507 string.Append(hex_digit); in ConsumeStringRaw()
/third_party/boost/boost/spirit/home/support/char_encoding/unicode/
Dquery.hpp88 hex_digit = 1024, enumerator
214 return (detail::category_lookup(ch) & properties::hex_digit) != 0; in is_hex_digit()
/third_party/jerryscript/jerry-core/api/
Djerry-snapshot.c1678 ecma_char_t hex_digit = (ecma_char_t) (byte >> 4); in jerry_get_literals_from_snapshot() local
1679 … *lit_buf_p++ = (lit_utf8_byte_t) ((hex_digit > 9) ? (hex_digit + ('A' - 10)) : (hex_digit + '0')); in jerry_get_literals_from_snapshot()
1680 hex_digit = (lit_utf8_byte_t) (byte & 0xf); in jerry_get_literals_from_snapshot()
1681 … *lit_buf_p++ = (lit_utf8_byte_t) ((hex_digit > 9) ? (hex_digit + ('A' - 10)) : (hex_digit + '0')); in jerry_get_literals_from_snapshot()
/third_party/boost/boost/spirit/home/support/
Dchar_class.hpp153 struct hex_digit { BOOST_SPIRIT_IS_TAG() }; struct
398 BOOST_SPIRIT_UNICODE_CLASSIFY(hex_digit)
642 BOOST_SPIRIT_UNICODE_CLASSIFY_WHAT(hex_digit)
Dcommon_terminals.hpp333 BOOST_SPIRIT_UNICODE_CHAR_CODE(hex_digit)
/third_party/boost/boost/spirit/home/x3/char/
Dunicode.hpp298 BOOST_SPIRIT_X3_CLASSIFY(hex_digit)
505 BOOST_SPIRIT_X3_CHAR_CLASS(hex_digit)
/third_party/boost/boost/spirit/home/support/char_encoding/
Dunicode.hpp220 BOOST_SPIRIT_DERIVED_CATEGORY(hex_digit)