Home
last modified time | relevance | path

Searched refs:Hex (Results 1 – 25 of 115) sorted by relevance

12345

/third_party/vk-gl-cts/framework/common/
DtcuFormatUtil.hpp41 class Hex class
44 Hex (deUint64 value_) : value(value_) {} in Hex() function in tcu::Format::Hex
71 std::ostream& operator<< (std::ostream& stream, tcu::Format::Hex<NumDigits> hex) in operator <<()
118 stream << Hex<BitfieldSize/4>(bitsLeft); in toStream()
156 return stream << Hex<NumBytes*2>((deUint64)m_value); in toStream()
165 return Hex<NumBytes*2>((deUint64)m_value).toString(); in toString()
238 Hex<sizeof(T)*2> operator* (void) const { return Hex<sizeof(T)*2>(*m_iter); } in operator *()
253 inline Format::Hex<NumDigits> toHex (T value) in toHex()
255 return Format::Hex<NumDigits>(toUint64(value)); in toHex()
260 inline Format::Hex<sizeof(T)*2> toHex (T value) in toHex()
[all …]
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/
Dstr_cat.h134 struct Hex { struct
140 explicit Hex( argument
144 : Hex(spec, static_cast<uint8_t>(v)) {} in Hex() argument
146 explicit Hex(
150 : Hex(spec, static_cast<uint16_t>(v)) {} in Hex() function
152 explicit Hex(
156 : Hex(spec, static_cast<uint32_t>(v)) {} in Hex() argument
158 explicit Hex(
162 : Hex(spec, static_cast<uint64_t>(v)) {} in Hex() argument
164 explicit Hex(Pointee* v, PadSpec spec = absl::kNoPad)
[all …]
Dsubstitute_test.cc50 absl::Hex(0), absl::Hex(1, absl::kSpacePad2), in TEST()
51 absl::Hex(0xf, absl::kSpacePad2), in TEST()
52 absl::Hex(int16_t{-1}, absl::kSpacePad5), in TEST()
53 absl::Hex(int16_t{-1}, absl::kZeroPad5), in TEST()
54 absl::Hex(0x123456789abcdef, absl::kZeroPad16))); in TEST()
68 EXPECT_EQ(absl::StrCat("0x", absl::Hex(int_p)), str); in TEST()
Dstr_cat_test.cc486 std::string actual = absl::StrCat(absl::Hex(v, absl::kNoPad)); in CheckHex()
492 absl::StrCat(absl::Hex(v, static_cast<absl::PadSpec>(spec))); in CheckHex()
500 absl::StrCat(absl::Hex(v, static_cast<absl::PadSpec>(spec))); in CheckHex()
600 EXPECT_EQ("ff", absl::StrCat(absl::Hex(minus_one_8bit))); in TestFastPrints()
603 EXPECT_EQ("ffff", absl::StrCat(absl::Hex(minus_one_16bit))); in TestFastPrints()
/third_party/elfutils/tests/
Drun-readelf-zx.sh25 Hex dump of section [2] '.zdebug_aranges', 50 bytes (96 uncompressed) at offset 0x260:
37 Hex dump of section [2] '.debug_aranges', 62 bytes (96 uncompressed) at offset 0x260:
49 Hex dump of section [2] '.zdebug_aranges', 49 bytes (64 uncompressed) at offset 0x1c0:
59 Hex dump of section [2] '.debug_aranges', 49 bytes (64 uncompressed) at offset 0x1c0:
Drun-readelf-test2.sh24 Hex dump of section [6] '.strtab', 1 bytes at offset 0x290:
30 Hex dump of section [6] '.strtab', 1 bytes at offset 0x290:
/third_party/glslang/Test/
Dspv.explicittypes.frag46 -0x1111111111111111l, // Hex
55 0xFFFFFFFFFFFFFFFFul, // Hex
64 -0x11111111, // Hex
73 0xFFFFFFFF, // Hex
82 int16_t(-0x1111), // Hex
91 uint16_t(0xFFFF), // Hex
100 int8_t(-0x11), // Hex
109 uint8_t(0xFF), // Hex
Dspv.vulkan110.int16.frag37 int16_t(-0x1111), // Hex
46 uint16_t(0xFFFF), // Hex
/third_party/json/tests/thirdparty/Fuzzer/
DFuzzerUtil.cpp111 char Hex[] = "0xAA"; in ParseOneDictionaryEntry() local
112 Hex[2] = Str[Pos + 2]; in ParseOneDictionaryEntry()
113 Hex[3] = Str[Pos + 3]; in ParseOneDictionaryEntry()
114 U->push_back(strtol(Hex, nullptr, 16)); in ParseOneDictionaryEntry()
/third_party/node/deps/openssl/openssl/crypto/bn/
Dbn_print.c14 static const char Hex[] = "0123456789ABCDEF"; variable
45 if (BIO_write(bp, &Hex[v], 1) != 1) in BN_print()
Dbn_conv.c14 static const char Hex[] = "0123456789ABCDEF"; variable
38 *p++ = Hex[v >> 4]; in BN_bn2hex()
39 *p++ = Hex[v & 0x0f]; in BN_bn2hex()
/third_party/openssl/crypto/bn/
Dbn_print.c14 static const char Hex[] = "0123456789ABCDEF"; variable
45 if (BIO_write(bp, &Hex[v], 1) != 1) in BN_print()
Dbn_conv.c14 static const char Hex[] = "0123456789ABCDEF"; variable
38 *p++ = Hex[v >> 4]; in BN_bn2hex()
39 *p++ = Hex[v & 0x0f]; in BN_bn2hex()
/third_party/skia/third_party/externals/icu/source/data/translit/
Den.txt21 "%Translit%Hex" { "Hex Escape" }
/third_party/icu/icu4c/source/data/translit/
Den.txt21 "%Translit%Hex" { "Hex Escape" }
/third_party/ltp/tools/sparse/sparse-src/
Dtokenize.c498 Hex = 4, enumerator
506 ['0' + 1 ... '9' + 1] = Digit | Hex,
507 ['A' + 1 ... 'D' + 1] = Letter | Hex,
508 ['E' + 1] = Letter | Hex | Exp, /* E<exp> */
509 ['F' + 1] = Letter | Hex,
513 ['a' + 1 ... 'd' + 1] = Letter | Hex,
514 ['e' + 1] = Letter | Hex | Exp, /* e<exp> */
515 ['f' + 1] = Letter | Hex,
611 if (want_hex && !(cclass[next + 1] & Hex)) in eat_string()
/third_party/protobuf/src/google/protobuf/compiler/cpp/
Dcpp_field.cc99 strings::Hex(1u << (has_bit_index % 32), strings::ZERO_PAD_8), "u;"); in SetHasBitIndex()
102 strings::Hex(1u << (has_bit_index % 32), strings::ZERO_PAD_8), "u;"); in SetHasBitIndex()
/third_party/protobuf/csharp/src/Google.Protobuf/
DJsonFormatter.cs773 private const string Hex = "0123456789abcdef"; field in Google.Protobuf.JsonFormatter
777 writer.Write(Hex[(c >> 12) & 0xf]); in HexEncodeUtf16CodeUnit()
778 writer.Write(Hex[(c >> 8) & 0xf]); in HexEncodeUtf16CodeUnit()
779 writer.Write(Hex[(c >> 4) & 0xf]); in HexEncodeUtf16CodeUnit()
780 writer.Write(Hex[(c >> 0) & 0xf]); in HexEncodeUtf16CodeUnit()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFormat.h159 bool Hex;
167 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DFormat.h168 bool Hex;
176 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
/third_party/icu/docs/userguide/transforms/general/
Dindex.md31 3. Hex and Character Name conversions
160 (like fr, en_US, or zh_Hant), or special tags (like Any or Hex). For example:
164 3. Hex-Any/Perl
174 "Any-Hex/Unicode", "Any-Hex/Perl", and "Any-Hex/XML", respectively. If no
176 "Any-Hex", this is the Java variant (for historical reasons), so "Any-Hex" is
177 equivalent to "Any-Hex/Java".
207 source "Any". So the inverse of "Hex/Perl" is "Hex-Any/Perl", since the former
208 is really shorthand for "Any-Hex/Perl".
222 designed to support this. Examples of transforms that support this are "Any-Hex"
403Hex | Converts between characters and their Unicode code point values. For example: ., \\u002E\\u0…
[all …]
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fShaderAtomicOpTests.cpp456 << ": expected minimum " << minValue << " (" << tcu::Format::Hex<8>((deUint32)minValue) << ")" in verify()
457 << ", got " << groupOutput << " (" << tcu::Format::Hex<8>(groupOutput) << ")" in verify()
471 << " (" << tcu::Format::Hex<8>(outputValue) << ")" in verify()
538 << ": expected maximum " << maxValue << " (" << tcu::Format::Hex<8>((deUint32)maxValue) << ")" in verify()
539 << ", got " << groupOutput << " (" << tcu::Format::Hex<8>(groupOutput) << ")" in verify()
553 << " (" << tcu::Format::Hex<8>(outputValue) << ")" in verify()
/third_party/skia/third_party/externals/icu/source/data/lang/
Den.txt1083 c11{"Hex transform using C11 syntax"}
1084 css{"Hex transform using CSS syntax"}
1090 java{"Hex transform using Java syntax"}
1093 percent{"Hex transform using percent syntax"}
1094 perl{"Hex transform using Perl syntax"}
1095 plain{"Hex transform with no surrounding syntax"}
1099 unicode{"Hex transform using Unicode syntax"}
1100 xml{"Hex transform using XML syntax"}
1101 xml10{"Hex transform using XML decimal syntax"}
/third_party/icu/icu4c/source/data/lang/
Dar_XB.txt1079 c11{"؜‮Hex‬؜ ؜‮Transforms‬؜ ؜‮Using‬؜ ؜‮C‬؜11 ؜‮Syntax‬؜"}
1080 css{"؜‮Hex‬؜ ؜‮Transforms‬؜ ؜‮Using‬؜ ؜‮CSS‬؜ ؜‮Syntax‬؜"}
1084 java{"؜‮Hex‬؜ ؜‮Transforms‬؜ ؜‮Using‬؜ ؜‮Java‬؜ ؜‮Syntax‬؜"}
1087 percent{"؜‮Hex‬؜ ؜‮Transforms‬؜ ؜‮Using‬؜ ؜‮Percent‬؜ ؜‮Syntax‬؜"}
1088 perl{"؜‮Hex‬؜ ؜‮Transforms‬؜ ؜‮Using‬؜ ؜‮Perl‬؜ ؜‮Syntax‬؜"}
1089 plain{"؜‮Hex‬؜ ؜‮Transforms‬؜ ؜‮With‬؜ ؜‮No‬؜ ؜‮Surrounding‬؜ ؜‮Syntax‬؜"}
1093 unicode{"؜‮Hex‬؜ ؜‮Transforms‬؜ ؜‮Using‬؜ ؜‮Unicode‬؜ ؜‮Syntax‬؜"}
1094 xml{"؜‮Hex‬؜ ؜‮Transforms‬؜ ؜‮Using‬؜ ؜‮XML‬؜ ؜‮Syntax‬؜"}
1095 xml10{"؜‮Hex‬؜ ؜‮Transforms‬؜ ؜‮Using‬؜ ؜‮XML‬؜ ؜‮Decimal‬؜ ؜‮Syntax‬؜"}
Den.txt1142 c11{"Hex transform using C11 syntax"}
1143 css{"Hex transform using CSS syntax"}
1156 java{"Hex transform using Java syntax"}
1160 percent{"Hex transform using percent syntax"}
1161 perl{"Hex transform using Perl syntax"}
1162 plain{"Hex transform with no surrounding syntax"}
1168 unicode{"Hex transform using Unicode syntax"}
1170 xml{"Hex transform using XML syntax"}
1171 xml10{"Hex transform using XML decimal syntax"}

12345