Home
last modified time | relevance | path

Searched refs:hex_value (Results 1 – 10 of 10) sorted by relevance

/third_party/boost/boost/multiprecision/cpp_int/
Dliterals.hpp17 struct hex_value;
19 struct hex_value<'0'> struct
24 struct hex_value<'1'> struct
29 struct hex_value<'2'> struct
34 struct hex_value<'3'> struct
39 struct hex_value<'4'> struct
44 struct hex_value<'5'> struct
49 struct hex_value<'6'> struct
54 struct hex_value<'7'> struct
59 struct hex_value<'8'> struct
[all …]
/third_party/jerryscript/jerry-core/ecma/builtin-objects/
Decma-builtin-global.c226 uint32_t hex_value = lit_char_hex_lookup (input_char_p + 1, input_end_p, 2); in ecma_builtin_global_object_decode_uri_helper() local
227 if (hex_value == UINT32_MAX) in ecma_builtin_global_object_decode_uri_helper()
232 ecma_char_t decoded_byte = (ecma_char_t) hex_value; in ecma_builtin_global_object_decode_uri_helper()
279 uint32_t hex_value = lit_char_hex_lookup (input_char_p + 1, input_end_p, 2); in ecma_builtin_global_object_decode_uri_helper() local
280 if (hex_value == UINT32_MAX) in ecma_builtin_global_object_decode_uri_helper()
286 ecma_char_t decoded_byte = (ecma_char_t) hex_value; in ecma_builtin_global_object_decode_uri_helper()
338 hex_value = lit_char_hex_lookup (input_char_p + 1, input_end_p, 2); in ecma_builtin_global_object_decode_uri_helper()
340 …if (hex_value == UINT32_MAX || (hex_value & LIT_UTF8_EXTRA_BYTE_MASK) != LIT_UTF8_EXTRA_BYTE_MARKE… in ecma_builtin_global_object_decode_uri_helper()
347 octets[i] = (lit_utf8_byte_t) hex_value; in ecma_builtin_global_object_decode_uri_helper()
Decma-builtin-json.c177 …uint32_t hex_value = lit_char_hex_lookup (current_p + 1, end_p, ECMA_JSON_HEX_ESCAPE_SEQUENCE_LENG… in ecma_builtin_json_parse_string() local
178 if (hex_value == UINT32_MAX) in ecma_builtin_json_parse_string()
183 ecma_stringbuilder_append_char (&result_builder, (ecma_char_t) hex_value); in ecma_builtin_json_parse_string()
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
Dconvert_test.cc912 const double hex_value = 8.85060580848964661981881363317370414733886718750; in TEST_F() local
913 EXPECT_EQ(format("%.0a", hex_value), "0x1p+3"); in TEST_F()
914 EXPECT_EQ(format("%.1a", hex_value), "0x1.2p+3"); in TEST_F()
915 EXPECT_EQ(format("%.2a", hex_value), "0x1.1bp+3"); in TEST_F()
916 EXPECT_EQ(format("%.3a", hex_value), "0x1.1b4p+3"); in TEST_F()
917 EXPECT_EQ(format("%.4a", hex_value), "0x1.1b38p+3"); in TEST_F()
918 EXPECT_EQ(format("%.5a", hex_value), "0x1.1b383p+3"); in TEST_F()
919 EXPECT_EQ(format("%.6a", hex_value), "0x1.1b382ap+3"); in TEST_F()
920 EXPECT_EQ(format("%.7a", hex_value), "0x1.1b3829bp+3"); in TEST_F()
921 EXPECT_EQ(format("%.8a", hex_value), "0x1.1b3829acp+3"); in TEST_F()
[all …]
/third_party/abseil-cpp/absl/strings/internal/str_format/
Dconvert_test.cc900 const double hex_value = 8.85060580848964661981881363317370414733886718750; in TEST_F() local
901 EXPECT_EQ(format("%.0a", hex_value), "0x1p+3"); in TEST_F()
902 EXPECT_EQ(format("%.1a", hex_value), "0x1.2p+3"); in TEST_F()
903 EXPECT_EQ(format("%.2a", hex_value), "0x1.1bp+3"); in TEST_F()
904 EXPECT_EQ(format("%.3a", hex_value), "0x1.1b4p+3"); in TEST_F()
905 EXPECT_EQ(format("%.4a", hex_value), "0x1.1b38p+3"); in TEST_F()
906 EXPECT_EQ(format("%.5a", hex_value), "0x1.1b383p+3"); in TEST_F()
907 EXPECT_EQ(format("%.6a", hex_value), "0x1.1b382ap+3"); in TEST_F()
908 EXPECT_EQ(format("%.7a", hex_value), "0x1.1b3829bp+3"); in TEST_F()
909 EXPECT_EQ(format("%.8a", hex_value), "0x1.1b3829acp+3"); in TEST_F()
[all …]
/third_party/jerryscript/jerry-core/parser/regexp/
Dre-parser.c565 uint32_t hex_value = lit_char_hex_lookup (re_ctx_p->input_curr_p, re_ctx_p->input_end_p, 2); in re_parse_char_escape() local
566 if (hex_value != UINT32_MAX) in re_parse_char_escape()
568 re_ctx_p->token.value = hex_value; in re_parse_char_escape()
586 uint32_t hex_value = lit_char_hex_lookup (re_ctx_p->input_curr_p, re_ctx_p->input_end_p, 4); in re_parse_char_escape() local
587 if (hex_value != UINT32_MAX) in re_parse_char_escape()
589 re_ctx_p->token.value = hex_value; in re_parse_char_escape()
599 hex_value = lit_char_hex_lookup (re_ctx_p->input_curr_p + 2, re_ctx_p->input_end_p, 4); in re_parse_char_escape()
600 if (lit_is_code_point_utf16_low_surrogate (hex_value)) in re_parse_char_escape()
603 … (ecma_char_t) hex_value); in re_parse_char_escape()
/third_party/alsa-utils/amidi/
Damidi.c316 static int hex_value(char c) in hex_value() function
345 digit = hex_value(*p); in parse_data()
/third_party/skia/third_party/externals/tint/src/reader/wgsl/
Dlexer.cc40 uint32_t hex_value(char c) { in hex_value() function
428 const auto nibble = hex_value(content_->data[i]); in try_hex_float()
454 auto nibble = hex_value(content_->data[i]); in try_hex_float()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DAPFloat.cpp2348 integerPart hex_value; in convertFromHexadecimalString() local
2357 hex_value = hexDigitValue(*p); in convertFromHexadecimalString()
2358 if (hex_value == -1U) in convertFromHexadecimalString()
2366 hex_value <<= bitPos % integerPartWidth; in convertFromHexadecimalString()
2367 significand[bitPos / integerPartWidth] |= hex_value; in convertFromHexadecimalString()
2369 auto FractOrErr = trailingHexadecimalFraction(p, end, hex_value); in convertFromHexadecimalString()
/third_party/ffmpeg/doc/
Dmuxers.texi1681 @item hex_value