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

References

tools/lldb/include/lldb/Core/Opcode.h
  187       assert(length < sizeof(m_data.inst.bytes));
  188       memcpy(m_data.inst.bytes, bytes, length);
  199     return ((m_type == Opcode::eTypeBytes) ? m_data.inst.bytes : nullptr);
  241       return m_data.inst.bytes;
tools/lldb/source/Core/Opcode.cpp
   49       s->Printf("%2.2x", m_data.inst.bytes[i]);
   90         swap_buf[0] = m_data.inst.bytes[2];
   91         swap_buf[1] = m_data.inst.bytes[3];
   92         swap_buf[2] = m_data.inst.bytes[0];
   93         swap_buf[3] = m_data.inst.bytes[1];
  110         swap_buf[0] = m_data.inst.bytes[1];
  111         swap_buf[1] = m_data.inst.bytes[0];
  112         swap_buf[2] = m_data.inst.bytes[3];
  113         swap_buf[3] = m_data.inst.bytes[2];