Searched refs:FormattedNumber (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | Format.h | 166 class FormattedNumber { 176 FormattedNumber(uint64_t HV, int64_t DV, unsigned W, bool H, bool U, 188 inline FormattedNumber format_hex(uint64_t N, unsigned Width, 191 return FormattedNumber(N, 0, Width, true, Upper, true); 201 inline FormattedNumber format_hex_no_prefix(uint64_t N, unsigned Width, 204 return FormattedNumber(N, 0, Width, true, Upper, false); 213 inline FormattedNumber format_decimal(int64_t N, unsigned Width) { 214 return FormattedNumber(0, N, Width, false, false, false);
|
| H A D | raw_ostream.h | 36 class FormattedNumber; variable 314 raw_ostream &operator<<(const FormattedNumber &);
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | Signals.cpp | 133 static FormattedNumber format_ptr(void *PC) { in format_ptr()
|
| H A D | raw_ostream.cpp | 379 raw_ostream &raw_ostream::operator<<(const FormattedNumber &FN) { in operator <<()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVSupport.h | 123 inline FormattedNumber hexValue(uint64_t N, unsigned Width = HEX_WIDTH,
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objdump/ |
| H A D | COFFDump.cpp | 51 template <typename T> FormattedNumber formatAddr(T V) const { in formatAddr()
|