| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | VMRange.h | 33 m_byte_size(end_addr > start_addr ? end_addr - start_addr : 0) {} in VMRange() 39 m_byte_size = 0; in Clear() 54 m_byte_size = end_addr - base_addr; in SetEndAddress() 56 m_byte_size = 0; in SetEndAddress() 59 lldb::addr_t GetByteSize() const { return m_byte_size; } in GetByteSize() 61 void SetByteSize(lldb::addr_t byte_size) { m_byte_size = byte_size; } in SetByteSize() 65 lldb::addr_t GetEndAddress() const { return GetBaseAddress() + m_byte_size; } in GetEndAddress() 67 bool IsValid() const { return m_byte_size > 0; } in IsValid() 92 lldb::addr_t m_byte_size = 0; variable
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Interpreter/ |
| H A D | OptionGroupFormat.cpp | 38 m_byte_size(default_byte_size, default_byte_size), in OptionGroupFormat() 62 if (m_byte_size.GetDefaultValue() < UINT64_MAX) { in GetDefinitions() 94 if (m_byte_size.GetDefaultValue() == 0) { in SetOptionValue() 97 error = m_byte_size.SetValueFromString(option_arg); in SetOptionValue() 98 if (m_byte_size.GetCurrentValue() == 0) in SetOptionValue() 136 const bool byte_size_enabled = m_byte_size.GetDefaultValue() < UINT64_MAX; in SetOptionValue() 169 m_byte_size.SetCurrentValue(byte_size); in SetOptionValue() 170 m_byte_size.SetOptionWasSet(); in SetOptionValue() 280 m_byte_size.Clear(); in OptionParsingStarting()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | UniqueDWARFASTType.h | 29 m_byte_size(byte_size) {} in UniqueDWARFASTType() 33 m_declaration(rhs.m_declaration), m_byte_size(rhs.m_byte_size) {} in UniqueDWARFASTType() 42 m_byte_size = rhs.m_byte_size; 50 int32_t m_byte_size = -1; variable
|
| H A D | UniqueDWARFASTType.cpp | 24 if (udt.m_byte_size < 0 || byte_size < 0 || in Find() 25 udt.m_byte_size == byte_size) { in Find()
|
| H A D | DWARFASTParserClang.cpp | 1861 unique_ast_entry_up->m_byte_size = attrs.byte_size.value_or(0); in ParseStructureLikeDIE()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | OptionGroupFormat.h | 56 OptionValueUInt64 &GetByteSizeValue() { return m_byte_size; } in GetByteSizeValue() 58 const OptionValueUInt64 &GetByteSizeValue() const { return m_byte_size; } in GetByteSizeValue() 67 return m_format.OptionWasSet() || m_byte_size.OptionWasSet() || in AnyOptionWasSet() 77 OptionValueUInt64 m_byte_size; variable
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | AddressRange.cpp | 35 : m_base_addr(file_addr, section_list), m_byte_size(byte_size) {} in AddressRange() 39 : m_base_addr(section, offset), m_byte_size(byte_size) {} in AddressRange() 42 : m_base_addr(so_addr), m_byte_size(byte_size) {} in AddressRange() 139 m_byte_size += rhs_end_addr - lhs_end_addr; in Extend() 145 m_byte_size = 0; in Clear()
|
| H A D | ValueObjectConstResult.cpp | 209 if (!m_byte_size) { in GetByteSize() 214 return m_byte_size; in GetByteSize() 217 void ValueObjectConstResult::SetByteSize(size_t size) { m_byte_size = size; } in SetByteSize()
|
| H A D | ValueObjectChild.cpp | 36 m_byte_size(byte_size), m_byte_offset(byte_offset), in ValueObjectChild() 189 scalar.ExtractBitfield(8 * m_byte_size, 8 * m_byte_offset); in UpdateValue()
|
| H A D | Section.cpp | 166 m_file_addr(file_addr), m_byte_size(byte_size), in Section() 182 m_file_addr(file_addr), m_byte_size(byte_size), in Section() 294 VMRange range(addr, addr + m_byte_size); in Dump()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | AddressRange.h | 221 lldb::addr_t GetByteSize() const { return m_byte_size; } in GetByteSize() 237 void SetByteSize(lldb::addr_t byte_size) { m_byte_size = byte_size; } in SetByteSize() 242 lldb::addr_t m_byte_size = 0; ///< The size in bytes of this address range. variable
|
| H A D | ValueObjectChild.h | 32 std::optional<uint64_t> GetByteSize() override { return m_byte_size; } in GetByteSize() 65 uint64_t m_byte_size; variable
|
| H A D | Section.h | 170 lldb::addr_t GetByteSize() const { return m_byte_size; } in GetByteSize() 172 void SetByteSize(lldb::addr_t byte_size) { m_byte_size = byte_size; } in SetByteSize() 269 lldb::addr_t m_byte_size; // Size in bytes that this section will occupy in variable
|
| H A D | ValueObjectConstResult.h | 117 std::optional<uint64_t> m_byte_size; variable
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Breakpoint/ |
| H A D | StoppointSite.cpp | 16 : m_id(id), m_addr(addr), m_is_hardware_required(hardware), m_byte_size(0), in StoppointSite() 22 m_byte_size(byte_size), m_hit_counter() {} in StoppointSite()
|
| H A D | BreakpointSite.cpp | 105 m_byte_size = trap_opcode_size; in SetTrapOpcode() 109 m_byte_size = 0; in SetTrapOpcode() 164 if (m_byte_size == 0) in IntersectsRange() 167 const lldb::addr_t bp_end_addr = m_addr + m_byte_size; in IntersectsRange()
|
| H A D | Watchpoint.cpp | 346 GetID(), GetLoadAddress(), m_byte_size, in DumpWithLevel()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/ |
| H A D | ABISysV_ppc64.cpp | 554 uint64_t m_byte_size; member in __anon0244f9eb0111::ReturnValueExtractor 571 m_byte_size(m_type.GetByteSize(&thread).value_or(0)), in ReturnValueExtractor() 572 m_data_up(new DataBufferHeap(m_byte_size, 0)), m_reg_ctx(reg_ctx), in ReturnValueExtractor() 598 switch (m_byte_size) { in GetIntegerValue() 701 if (m_byte_size > 2 * vr_size) { in GetVectorValueObject() 709 if (m_byte_size > vr_size) { in GetVectorValueObject() 742 if (m_byte_size < vr_size) in GetVectorValueObject() 743 offs = vr_size - m_byte_size; in GetVectorValueObject() 753 if (m_byte_size > 2 * sizeof(uint64_t)) { in GetStructValueObject() 761 m_byte_size, error); in GetStructValueObject() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | GenericBitset.cpp | 54 uint8_t m_byte_size = 0; member in __anona518b3e90111::GenericBitsetFrontEnd 64 m_byte_size = target_sp->GetArchitecture().GetAddressByteSize(); in GenericBitsetFrontEnd() 130 DataExtractor data(&value, sizeof(value), m_byte_order, m_byte_size); in GetChildAtIndex()
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| H A D | StoppointSite.h | 31 uint32_t GetByteSize() const { return m_byte_size; } in GetByteSize() 61 uint32_t m_byte_size; variable
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | Type.cpp | 282 m_byte_size = *byte_size; in Type() 285 m_byte_size = 0; in Type() 293 m_byte_size = 0; in Type() 370 s->Printf(", size = %" PRIu64, m_byte_size); in Dump() 448 return static_cast<uint64_t>(m_byte_size); in GetByteSize() 464 m_byte_size = *size; in GetByteSize() 466 return static_cast<uint64_t>(m_byte_size); in GetByteSize() 471 m_byte_size = *size; in GetByteSize() 473 return static_cast<uint64_t>(m_byte_size); in GetByteSize() 482 m_byte_size = arch.GetAddressByteSize(); in GetByteSize() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | Type.h | 517 uint64_t m_byte_size : 63; variable
|