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

References

tools/llvm-objdump/llvm-objdump.cpp
  821       if (Bytes.size() >= 4) {
  823                      support::endian::read32<support::little>(Bytes.data()));
  826           OS << format("\t.byte 0x%02" PRIx8, Bytes[0]);
  827           for (unsigned int i = 1; i < Bytes.size(); i++)
  828             OS << format(", 0x%02" PRIx8, Bytes[i]);
  829           OS.indent(55 - (6 * Bytes.size()));
  834     if (Bytes.size() >= 4) {
  838                reinterpret_cast<const support::little32_t *>(Bytes.data()),
  839                Bytes.size() / 4))
  842       for (unsigned char B : Bytes)