Home
last modified time | relevance | path

Searched refs:SetBytes (Results 1 – 22 of 22) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
HDRegisterContextPOSIXCore_ppc64le.cpp74 value.SetBytes(&v, reg_info->byte_size, m_fpr.GetByteOrder()); in ReadRegister()
83 value.SetBytes(v, reg_info->byte_size, m_vmx.GetByteOrder()); in ReadRegister()
105 value.SetBytes(&v, reg_info->byte_size, m_vsx.GetByteOrder()); in ReadRegister()
111 value.SetBytes(v, reg_info->byte_size, m_vmx.GetByteOrder()); in ReadRegister()
HDRegisterContextPOSIXCore_powerpc.cpp78 value.SetBytes(v, reg_info->byte_size, m_vec.GetByteOrder()); in ReadRegister()
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDValue.h78 SetBytes(vector.bytes, vector.length, vector.byte_order);
84 bool SetBytes(const void *bytes, size_t length, in SetBytes() function
128 void SetBytes(const void *bytes, int len);
183 return m_vector.SetBytes(bytes, length, byte_order); in SetVectorBytes()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/FreeBSD/
HDRegisterContextPOSIXProcessMonitor_x86.cpp152 value_to_write.SetBytes(dst, full_value.GetByteSize(), byte_order); in WriteRegister()
214 value.SetBytes(m_fpr.fxsave.stmm[reg - m_reg_info.first_st].bytes, in ReadRegister()
217 value.SetBytes(m_fpr.fxsave.stmm[reg - m_reg_info.first_mm].bytes, in ReadRegister()
220 value.SetBytes(m_fpr.fxsave.xmm[reg - m_reg_info.first_xmm].bytes, in ReadRegister()
226 value.SetBytes(m_ymm_set.ymm[reg - m_reg_info.first_ymm].bytes, in ReadRegister()
HDRegisterContextPOSIXProcessMonitor_mips64.cpp95 value_to_write.SetBytes(dst, full_value.GetByteSize(), byte_order); in WriteRegister()
HDRegisterContextPOSIXProcessMonitor_arm.cpp94 value_to_write.SetBytes(dst, full_value.GetByteSize(), byte_order); in WriteRegister()
HDRegisterContextPOSIXProcessMonitor_powerpc.cpp107 value_to_write.SetBytes(dst, full_value.GetByteSize(), byte_order); in WriteRegister()
HDRegisterContextPOSIXProcessMonitor_arm64.cpp96 value_to_write.SetBytes(dst, full_value.GetByteSize(), byte_order); in WriteRegister()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
HDEvent.cpp108 SetBytes(str.data(), str.size()); in EventDataBytes()
112 SetBytes(src, src_len); in EventDataBytes()
144 void EventDataBytes::SetBytes(const void *src, size_t src_len) { in SetBytes() function in EventDataBytes
HDRegisterValue.cpp328 reg_value->SetBytes(&(bytes.front()), byte_size, eByteOrderLittle); in ParseVectorEncoding()
777 void RegisterValue::SetBytes(const void *bytes, size_t length, in SetBytes() function in RegisterValue
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
HDRegisterValue.h77 SetBytes(bytes, length, byte_order); in RegisterValue()
231 void SetBytes(const void *bytes, size_t length, lldb::ByteOrder byte_order);
HDEvent.h77 void SetBytes(const void *src, size_t src_len);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/NetBSD/
HDNativeRegisterContextNetBSD_x86_64.cpp409 reg_value.SetBytes(&m_fpr_x86_64.fxstate.fx_87_ac[reg - lldb_st0_x86_64], in ReadRegister()
420 reg_value.SetBytes(&m_fpr_x86_64.fxstate.fx_87_ac[reg - lldb_mm0_x86_64], in ReadRegister()
439 reg_value.SetBytes(&m_fpr_x86_64.fxstate.fx_xmm[reg - lldb_xmm0_x86_64], in ReadRegister()
468 reg_value.SetBytes(ymm.bytes, reg_info->byte_size, in ReadRegister()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
HDValue.cpp55 SetBytes(bytes, len); in Value()
95 void Value::SetBytes(const void *bytes, int len) { in SetBytes() function in Value
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
HDPythonDataObjects.h437 void SetBytes(llvm::ArrayRef<uint8_t> stringbytes);
455 void SetBytes(llvm::ArrayRef<uint8_t> stringbytes);
HDPythonDataObjects.cpp231 PythonBytes::PythonBytes(llvm::ArrayRef<uint8_t> bytes) { SetBytes(bytes); } in PythonBytes()
234 SetBytes(llvm::ArrayRef<uint8_t>(bytes, length)); in PythonBytes()
260 void PythonBytes::SetBytes(llvm::ArrayRef<uint8_t> bytes) { in SetBytes() function in PythonBytes
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
HDRegisterContextDarwin_x86_64.cpp720 value.SetBytes(fpu.stmm[reg - fpu_stmm0].bytes, reg_info->byte_size, in ReadRegister()
740 value.SetBytes(fpu.xmm[reg - fpu_xmm0].bytes, reg_info->byte_size, in ReadRegister()
HDRegisterContextDarwin_arm64.cpp426 value.SetBytes(fpu.v[reg - fpu_v0].bytes, reg_info->byte_size, in ReadRegister()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-arm/
HDABISysV_arm.cpp1538 value.SetBytes(buffer.GetBytes(), buffer.GetByteSize()); in GetReturnValuePassedInMemory()
1648 value.SetBytes(buffer.GetBytes(), *byte_size); in GetReturnValueObjectImpl()
1774 value.SetBytes(&raw_value, *byte_size); in GetReturnValueObjectImpl()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-s390x/
HDABISysV_s390x.cpp464 f0_value.SetBytes(buffer, 8, byte_order); in SetReturnValueObject()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/Windows-x86_64/
HDABIWindows_x86_64.cpp1348 xmm0_value.SetBytes(buffer, 16, byte_order); in SetReturnValueObject()
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/ABI/SysV-x86_64/
HDABISysV_x86_64.cpp515 xmm0_value.SetBytes(buffer, 16, byte_order); in SetReturnValueObject()