Searched refs:HexPrintStyle (Results 1 – 10 of 10) sorted by relevance
| /freebsd-14.2/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 <<() 389 HexPrintStyle Style; in operator <<() 391 Style = HexPrintStyle::PrefixUpper; in operator <<() 393 Style = HexPrintStyle::Upper; in operator <<() 395 Style = HexPrintStyle::PrefixLower; in operator <<() 397 Style = HexPrintStyle::Lower; in operator <<() 417 HexPrintStyle HPS = FB.Upper ? HexPrintStyle::Upper : HexPrintStyle::Lower; in operator <<()
|
| H A D | JSON.cpp | 751 llvm::write_hex(OS, C, llvm::HexPrintStyle::Lower, 4); in quote()
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | FormatProviders.h | 78 static bool consumeHexStyle(StringRef &Str, HexPrintStyle &Style) { in consumeHexStyle() 83 Style = HexPrintStyle::Lower; in consumeHexStyle() 85 Style = HexPrintStyle::Upper; in consumeHexStyle() 87 Style = HexPrintStyle::PrefixLower; in consumeHexStyle() 89 Style = HexPrintStyle::PrefixUpper; in consumeHexStyle() 93 static size_t consumeNumHexDigits(StringRef &Str, HexPrintStyle Style, in consumeNumHexDigits() 133 HexPrintStyle HS; 182 HexPrintStyle HS = HexPrintStyle::PrefixUpper;
|
| 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-14.2/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-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUArgumentUsageInfo.cpp | 40 llvm::write_hex(OS, Mask, llvm::HexPrintStyle::PrefixLower); in print()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Passes/ |
| H A D | StandardInstrumentations.cpp | 709 write_hex(ResultStream, NameHash, HexPrintStyle::Lower, MaxHashWidth); in getIRFileDisplayName() 715 write_hex(ResultStream, FunctionNameHash, HexPrintStyle::Lower, in getIRFileDisplayName() 720 write_hex(ResultStream, SCCNameHash, HexPrintStyle::Lower, MaxHashWidth); in getIRFileDisplayName() 724 write_hex(ResultStream, LoopNameHash, HexPrintStyle::Lower, MaxHashWidth); in getIRFileDisplayName()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/NVPTX/ |
| H A D | NVPTXAsmPrinter.cpp | 1315 llvm::write_hex(os, 0xFFULL << i * 8, HexPrintStyle::PrefixUpper); in printBytes()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | Lexer.cpp | 1490 llvm::write_hex(CharOS, C, llvm::HexPrintStyle::Upper, 4); in codepointAsHexString()
|