reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

include/llvm/Support/NativeFormatting.h
   41 void write_hex(raw_ostream &S, uint64_t N, HexPrintStyle Style,

References

include/llvm/DebugInfo/CodeView/TypeHashing.h
  217     write_hex(Stream, V.Hash, HexPrintStyle::Upper, 8);
  226       write_hex(Stream, B, HexPrintStyle::Upper, 2);
include/llvm/Support/FormatProviders.h
  136       write_hex(Stream, V, HS, Digits);
  184     write_hex(Stream, reinterpret_cast<std::uintptr_t>(V), HS, Digits);
lib/Support/JSON.cpp
  586       llvm::write_hex(OS, C, llvm::HexPrintStyle::Lower, 4);
lib/Support/raw_ostream.cpp
  143   llvm::write_hex(*this, N, HexPrintStyle::Lower);
  206   llvm::write_hex(*this, (uintptr_t)P, HexPrintStyle::PrefixLower);
  390     llvm::write_hex(*this, FN.HexValue, Style, FN.Width);
  433       llvm::write_hex(*this, Offset + LineIndex, HPS, OffsetWidth);
  446       llvm::write_hex(*this, Line[I], HPS, 2);
lib/Target/AMDGPU/AMDGPUArgumentUsageInfo.cpp
   36     llvm::write_hex(OS, Mask, llvm::HexPrintStyle::PrefixLower);
tools/clang/lib/Lex/Lexer.cpp
 1578       llvm::write_hex(CharOS, C, llvm::HexPrintStyle::Upper, 4);
tools/clang/tools/extra/clangd/Quality.cpp
  486   llvm::write_hex(OS, encodeFloat(-Score), llvm::HexPrintStyle::Lower,
unittests/Support/NativeFormatTests.cpp
   32   write_hex(Str, N, Style, Width);