Searched refs:HexPrintStyle (Results 1 – 10 of 10) sorted by relevance
/freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
H A D | FormatProviders.h | 79 static std::optional<HexPrintStyle> consumeHexStyle(StringRef &Str) { in consumeHexStyle() 84 return HexPrintStyle::Lower; in consumeHexStyle() 86 return HexPrintStyle::Upper; in consumeHexStyle() 88 return HexPrintStyle::PrefixLower; in consumeHexStyle() 91 return HexPrintStyle::PrefixUpper; in consumeHexStyle() 94 static size_t consumeNumHexDigits(StringRef &Str, HexPrintStyle Style, in consumeNumHexDigits() 136 if (std::optional<HexPrintStyle> HS = consumeHexStyle(Style)) { 183 HexPrintStyle HS = HexPrintStyle::PrefixUpper; 184 if (std::optional<HexPrintStyle> consumed = consumeHexStyle(Style))
|
H A D | NativeFormatting.h | 22 enum class HexPrintStyle { Upper, Lower, PrefixUpper, PrefixLower }; enum 26 bool isPrefixedHexStyle(HexPrintStyle S); 40 void write_hex(raw_ostream &S, uint64_t N, HexPrintStyle Style,
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | NativeFormatting.cpp | 135 void llvm::write_hex(raw_ostream &S, uint64_t N, HexPrintStyle Style, in write_hex() 142 bool Prefix = (Style == HexPrintStyle::PrefixLower || in write_hex() 143 Style == HexPrintStyle::PrefixUpper); in write_hex() 145 (Style == HexPrintStyle::Upper || Style == HexPrintStyle::PrefixUpper); in write_hex() 251 bool llvm::isPrefixedHexStyle(HexPrintStyle S) { in isPrefixedHexStyle() 252 return (S == HexPrintStyle::PrefixLower || S == HexPrintStyle::PrefixUpper); in isPrefixedHexStyle()
|
H A D | raw_ostream.cpp | 148 llvm::write_hex(*this, N, HexPrintStyle::Lower); in write_hex() 211 llvm::write_hex(*this, (uintptr_t)P, HexPrintStyle::PrefixLower); in operator <<() 383 HexPrintStyle Style; in operator <<() 385 Style = HexPrintStyle::PrefixUpper; in operator <<() 387 Style = HexPrintStyle::Upper; in operator <<() 389 Style = HexPrintStyle::PrefixLower; in operator <<() 391 Style = HexPrintStyle::Lower; in operator <<() 411 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower; in operator <<()
|
H A D | JSON.cpp | 747 llvm::write_hex(OS, C, llvm::HexPrintStyle::Lower, 4); in quote()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
H A D | TypeHashing.h | 225 write_hex(Stream, V.Hash, HexPrintStyle::Upper, 8); 234 write_hex(Stream, B, HexPrintStyle::Upper, 2);
|
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
H A D | AMDGPUArgumentUsageInfo.cpp | 40 llvm::write_hex(OS, Mask, llvm::HexPrintStyle::PrefixLower); in print()
|
/freebsd/contrib/llvm-project/llvm/lib/Passes/ |
H A D | StandardInstrumentations.cpp | 757 write_hex(ResultStream, NameHash, HexPrintStyle::Lower, MaxHashWidth); in getIRFileDisplayName() 763 write_hex(ResultStream, FunctionNameHash, HexPrintStyle::Lower, in getIRFileDisplayName() 768 write_hex(ResultStream, SCCNameHash, HexPrintStyle::Lower, MaxHashWidth); in getIRFileDisplayName() 772 write_hex(ResultStream, LoopNameHash, HexPrintStyle::Lower, MaxHashWidth); in getIRFileDisplayName() 777 write_hex(ResultStream, MachineFunctionNameHash, HexPrintStyle::Lower, in getIRFileDisplayName()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
H A D | NVPTXAsmPrinter.cpp | 1323 llvm::write_hex(os, 0xFFULL << i * 8, HexPrintStyle::PrefixUpper); in printBytes()
|
/freebsd/contrib/llvm-project/clang/lib/Lex/ |
H A D | Lexer.cpp | 1535 llvm::write_hex(CharOS, C, llvm::HexPrintStyle::Upper, 4); in codepointAsHexString()
|