Searched refs:PrefixUpper (Results 1 – 6 of 6) sorted by relevance
| /llvm-project-15.0.7/llvm/unittests/Support/ |
| H A D | NativeFormatTests.cpp | 77 EXPECT_EQ("0x0", format_number(0, HexPrintStyle::PrefixUpper)); in TEST() 78 EXPECT_EQ("0xBEEF", format_number(0xbeefLL, HexPrintStyle::PrefixUpper)); in TEST() 80 format_number(0xdeadbeefLL, HexPrintStyle::PrefixUpper)); in TEST()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | NativeFormatting.cpp | 144 Style == HexPrintStyle::PrefixUpper); in write_hex() 146 (Style == HexPrintStyle::Upper || Style == HexPrintStyle::PrefixUpper); in write_hex() 253 return (S == HexPrintStyle::PrefixLower || S == HexPrintStyle::PrefixUpper); in isPrefixedHexStyle()
|
| H A D | raw_ostream.cpp | 383 Style = HexPrintStyle::PrefixUpper; in operator <<()
|
| /llvm-project-15.0.7/llvm/include/llvm/Support/ |
| H A D | NativeFormatting.h | 22 enum class HexPrintStyle { Upper, Lower, PrefixUpper, PrefixLower }; enumerator
|
| H A D | FormatProviders.h | 88 Style = HexPrintStyle::PrefixUpper; in consumeHexStyle() 181 HexPrintStyle HS = HexPrintStyle::PrefixUpper;
|
| /llvm-project-15.0.7/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXAsmPrinter.cpp | 1273 llvm::write_hex(os, 0xFFULL << i * 8, HexPrintStyle::PrefixUpper); in printBytes()
|