Home
last modified time | relevance | path

Searched refs:HexValue (Results 1 – 16 of 16) sorted by relevance

/external/llvm-project/lldb/unittests/tools/lldb-server/tests/
DMessageObjects.cpp205 StringRef HexValue, in parseRegisterValue() argument
209 if (ZeroPad && HexValue.size() < Info.byte_size * 2) { in parseRegisterValue()
210 Storage.insert(Storage.begin(), Info.byte_size * 2 - HexValue.size(), '0'); in parseRegisterValue()
211 Storage += HexValue; in parseRegisterValue()
212 HexValue = Storage; in parseRegisterValue()
215 SmallVector<uint8_t, 64> Bytes(HexValue.size() / 2); in parseRegisterValue()
216 StringExtractor(HexValue).GetHexBytes(Bytes, '\xcc'); in parseRegisterValue()
DMessageObjects.h88 llvm::StringRef HexValue, llvm::support::endianness Endian,
/external/llvm-project/llvm/tools/llvm-exegesis/lib/
DSnippetFile.cpp66 const StringRef HexValue = Parts[1].trim(); in HandleComment() local
68 /* each hex digit is 4 bits */ HexValue.size() * 4, HexValue, 16); in HandleComment()
/external/llvm/include/llvm/Support/
DFormat.h143 uint64_t HexValue; variable
154 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U), in FormattedNumber()
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
DFormat.h156 uint64_t HexValue;
167 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
/external/cpu_features/src/
Dstring_view.c102 static int HexValue(const char c) { in HexValue() function
115 const int value = HexValue(CpuFeatures_StringView_Front(remainder)); in ParsePositiveNumberWithBase()
/external/llvm-project/llvm/include/llvm/Support/
DFormat.h165 uint64_t HexValue;
176 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DFormat.h165 uint64_t HexValue;
176 : HexValue(HV), DecValue(DV), Width(W), Hex(H), Upper(U),
/external/llvm-project/clang-tools-extra/clang-tidy/cppcoreguidelines/
DNarrowingConversionsCheck.cpp180 llvm::SmallString<32> HexValue; in getValueAsString() local
181 Value.toStringUnsigned(HexValue, 16); in getValueAsString()
182 for (size_t I = HexValue.size(); I < (HexBits / 4); ++I) in getValueAsString()
184 Str.append(HexValue); in getValueAsString()
/external/llvm/lib/Support/
Draw_ostream.cpp414 unsigned Nibbles = (64 - countLeadingZeros(FN.HexValue)+3)/4; in operator <<()
423 unsigned long long N = FN.HexValue; in operator <<()
/external/swiftshader/third_party/llvm-subzero/lib/Support/
Draw_ostream.cpp350 llvm::write_hex(*this, FN.HexValue, Style, FN.Width); in operator <<()
/external/llvm-project/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64InstPrinter.cpp1532 std::make_unsigned_t<T> HexValue = Value; in printImmSVE() local
1535 O << '#' << formatHex((uint64_t)HexValue); in printImmSVE()
1542 *CommentStream << '=' << formatDec(HexValue) << '\n'; in printImmSVE()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64InstPrinter.cpp1502 typename std::make_unsigned<T>::type HexValue = Value; in printImmSVE() local
1505 O << '#' << formatHex((uint64_t)HexValue); in printImmSVE()
1512 *CommentStream << '=' << formatDec(HexValue) << '\n'; in printImmSVE()
/external/deqp-deps/amber/src/
Dtokenizer_test.cc264 TEST_F(TokenizerTest, HexValue) { in TEST_F() argument
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
Draw_ostream.cpp390 llvm::write_hex(*this, FN.HexValue, Style, FN.Width); in operator <<()
/external/llvm-project/llvm/lib/Support/
Draw_ostream.cpp391 llvm::write_hex(*this, FN.HexValue, Style, FN.Width); in operator <<()