Home
last modified time | relevance | path

Searched refs:PrefixUpper (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/Support/
H A DNativeFormatTests.cpp77 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 DNativeFormatting.cpp144 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 Draw_ostream.cpp383 Style = HexPrintStyle::PrefixUpper; in operator <<()
/llvm-project-15.0.7/llvm/include/llvm/Support/
H A DNativeFormatting.h22 enum class HexPrintStyle { Upper, Lower, PrefixUpper, PrefixLower }; enumerator
H A DFormatProviders.h88 Style = HexPrintStyle::PrefixUpper; in consumeHexStyle()
181 HexPrintStyle HS = HexPrintStyle::PrefixUpper;
/llvm-project-15.0.7/llvm/lib/Target/NVPTX/
H A DNVPTXAsmPrinter.cpp1273 llvm::write_hex(os, 0xFFULL << i * 8, HexPrintStyle::PrefixUpper); in printBytes()