| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/ |
| H A D | RegisterContextPOSIXCore_ppc64le.cpp | 73 value.SetBytes(&v, reg_info->byte_size, m_fpr.GetByteOrder()); in ReadRegister() 82 value.SetBytes(v, reg_info->byte_size, m_vmx.GetByteOrder()); in ReadRegister() 104 value.SetBytes(&v, reg_info->byte_size, m_vsx.GetByteOrder()); in ReadRegister() 110 value.SetBytes(v, reg_info->byte_size, m_vmx.GetByteOrder()); in ReadRegister()
|
| H A D | RegisterContextPOSIXCore_powerpc.cpp | 77 value.SetBytes(v, reg_info->byte_size, m_vec.GetByteOrder()); in ReadRegister()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Core/ |
| H A D | Value.h | 89 SetBytes(vector.bytes, vector.length, vector.byte_order); 95 bool SetBytes(const void *bytes, size_t length, in SetBytes() function 139 void SetBytes(const void *bytes, int len); 194 return m_vector.SetBytes(bytes, length, byte_order); in SetVectorBytes()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Utility/ |
| H A D | Event.cpp | 115 SetBytes(str.data(), str.size()); in EventDataBytes() 119 SetBytes(src, src_len); in EventDataBytes() 151 void EventDataBytes::SetBytes(const void *src, size_t src_len) { in SetBytes() function in EventDataBytes
|
| H A D | RegisterValue.cpp | 328 reg_value->SetBytes(&(bytes.front()), byte_size, eByteOrderLittle); in ParseVectorEncoding() 748 void RegisterValue::SetBytes(const void *bytes, size_t length, in SetBytes() function in RegisterValue
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/ |
| H A D | RegisterContextPOSIXProcessMonitor_x86.cpp | 153 value_to_write.SetBytes(dst, full_value.GetByteSize(), byte_order); in WriteRegister() 215 value.SetBytes(m_fpr.fxsave.stmm[reg - m_reg_info.first_st].bytes, in ReadRegister() 218 value.SetBytes(m_fpr.fxsave.stmm[reg - m_reg_info.first_mm].bytes, in ReadRegister() 221 value.SetBytes(m_fpr.fxsave.xmm[reg - m_reg_info.first_xmm].bytes, in ReadRegister() 227 value.SetBytes(m_ymm_set.ymm[reg - m_reg_info.first_ymm].bytes, in ReadRegister()
|
| H A D | RegisterContextPOSIXProcessMonitor_mips64.cpp | 96 value_to_write.SetBytes(dst, full_value.GetByteSize(), byte_order); in WriteRegister()
|
| H A D | RegisterContextPOSIXProcessMonitor_arm.cpp | 95 value_to_write.SetBytes(dst, full_value.GetByteSize(), byte_order); in WriteRegister()
|
| H A D | RegisterContextPOSIXProcessMonitor_arm64.cpp | 97 value_to_write.SetBytes(dst, full_value.GetByteSize(), byte_order); in WriteRegister()
|
| H A D | RegisterContextPOSIXProcessMonitor_powerpc.cpp | 108 value_to_write.SetBytes(dst, full_value.GetByteSize(), byte_order); in WriteRegister()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/Utility/ |
| H A D | RegisterValue.h | 77 SetBytes(bytes, length, byte_order); in RegisterValue() 231 void SetBytes(const void *bytes, size_t length, lldb::ByteOrder byte_order);
|
| H A D | Event.h | 88 void SetBytes(const void *src, size_t src_len);
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ScriptInterpreter/Python/ |
| H A D | PythonDataObjects.h | 221 void SetBytes(llvm::ArrayRef<uint8_t> stringbytes); 247 void SetBytes(llvm::ArrayRef<uint8_t> stringbytes);
|
| H A D | PythonDataObjects.cpp | 207 SetBytes(bytes); in PythonBytes() 211 SetBytes(llvm::ArrayRef<uint8_t>(bytes, length)); in PythonBytes() 260 void PythonBytes::SetBytes(llvm::ArrayRef<uint8_t> bytes) { in SetBytes() function in PythonBytes
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/NetBSD/ |
| H A D | NativeRegisterContextNetBSD_x86_64.cpp | 399 reg_value.SetBytes(&m_fpr_x86_64.fxstate.fx_87_ac[reg - lldb_st0_x86_64], in ReadRegister() 410 reg_value.SetBytes(&m_fpr_x86_64.fxstate.fx_xmm[reg - lldb_mm0_x86_64], in ReadRegister() 429 reg_value.SetBytes(&m_fpr_x86_64.fxstate.fx_xmm[reg - lldb_xmm0_x86_64], in ReadRegister()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Core/ |
| H A D | Value.cpp | 56 SetBytes(bytes, len); in Value() 96 void Value::SetBytes(const void *bytes, int len) { in SetBytes() function in Value
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/Process/Utility/ |
| H A D | RegisterContextDarwin_x86_64.cpp | 743 value.SetBytes(fpu.stmm[reg - fpu_stmm0].bytes, reg_info->byte_size, in ReadRegister() 763 value.SetBytes(fpu.xmm[reg - fpu_xmm0].bytes, reg_info->byte_size, in ReadRegister()
|
| H A D | RegisterContextDarwin_arm64.cpp | 431 value.SetBytes(fpu.v[reg].bytes.buffer, reg_info->byte_size, in ReadRegister()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-arm/ |
| H A D | ABISysV_arm.cpp | 1540 value.SetBytes(buffer.GetBytes(), buffer.GetByteSize()); in GetReturnValuePassedInMemory() 1650 value.SetBytes(buffer.GetBytes(), *byte_size); in GetReturnValueObjectImpl() 1776 value.SetBytes(&raw_value, *byte_size); in GetReturnValueObjectImpl()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-s390x/ |
| H A D | ABISysV_s390x.cpp | 472 f0_value.SetBytes(buffer, 8, byte_order); in SetReturnValueObject()
|
| /freebsd-12.1/contrib/llvm/tools/lldb/source/Plugins/ABI/SysV-x86_64/ |
| H A D | ABISysV_x86_64.cpp | 1360 xmm0_value.SetBytes(buffer, 16, byte_order); in SetReturnValueObject()
|