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

References

include/llvm/Support/Endian.h
   60   return byte_swap(value, endian);
   72   return byte_swap<value_type>(ret, endian);
  100   value = byte_swap<value_type>(value, endian);
include/llvm/Support/EndianStream.h
   28   value = byte_swap<value_type>(value, endian);
lib/DebugInfo/GSYM/FileWriter.cpp
   39   const uint16_t Swapped = support::endian::byte_swap(U, ByteOrder);
   44   const uint32_t Swapped = support::endian::byte_swap(U, ByteOrder);
   49   const uint64_t Swapped = support::endian::byte_swap(U, ByteOrder);
   54   const uint32_t Swapped = support::endian::byte_swap(U, ByteOrder);
lib/MC/ELFObjectWriter.cpp
 1246   uint16_t NumSections = support::endian::byte_swap<uint16_t>(
 1255         support::endian::byte_swap<uint64_t>(SectionHeaderOffset, W.Endian);
 1261         support::endian::byte_swap<uint32_t>(SectionHeaderOffset, W.Endian);
tools/llvm-readobj/WindowsResourceDumper.cpp
   30     uint16_t ChValue = support::endian::byte_swap(Ch, support::little);