| /freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/ |
| HD | 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-13-stable/contrib/llvm-project/lldb/source/Interpreter/ |
| HD | 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-13-stable/contrib/llvm-project/lldb/source/Core/ |
| HD | AddressRange.cpp | 36 : m_base_addr(file_addr, section_list), m_byte_size(byte_size) {} in AddressRange() 40 : m_base_addr(section, offset), m_byte_size(byte_size) {} in AddressRange() 43 : m_base_addr(so_addr), m_byte_size(byte_size) {} in AddressRange() 140 m_byte_size += rhs_end_addr - lhs_end_addr; in Extend() 146 m_byte_size = 0; in Clear() 150 return m_base_addr.IsValid() && (m_byte_size > 0); in IsValid() 243 m_byte_size == rhs.GetByteSize(); in operator ==()
|
| HD | 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()
|
| HD | ValueObjectChild.cpp | 36 m_byte_size(byte_size), m_byte_offset(byte_offset), in ValueObjectChild() 191 scalar.ExtractBitfield(8 * m_byte_size, 8 * m_byte_offset); in UpdateValue()
|
| HD | 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-13-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| HD | 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-13-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| HD | UniqueDWARFASTType.h | 29 m_declaration(rhs.m_declaration), m_byte_size(rhs.m_byte_size), in UniqueDWARFASTType() 45 m_byte_size = byte_size; in UpdateToDefDIE() 52 int32_t m_byte_size = -1; variable
|
| HD | UniqueDWARFASTType.cpp | 34 : (udt.m_byte_size < 0 || byte_size < 0 || in Find() 35 udt.m_byte_size == byte_size) && in Find()
|
| HD | DWARFASTParserClang.cpp | 1841 unique_ast_entry_up->m_byte_size = byte_size; in ParseStructureLikeDIE()
|
| /freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/ |
| HD | AddressRange.h | 223 lldb::addr_t GetByteSize() const { return m_byte_size; } in GetByteSize() 239 void SetByteSize(lldb::addr_t byte_size) { m_byte_size = byte_size; } in SetByteSize() 250 lldb::addr_t m_byte_size = 0; ///< The size in bytes of this address range. variable
|
| HD | ValueObjectChild.h | 32 std::optional<uint64_t> GetByteSize() override { return m_byte_size; } in GetByteSize() 65 uint64_t m_byte_size; variable
|
| HD | 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
|
| HD | ValueObjectConstResult.h | 114 std::optional<uint64_t> m_byte_size; variable
|
| /freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/ |
| HD | 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()
|
| HD | 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()
|
| HD | Watchpoint.cpp | 354 GetID(), GetLoadAddress(), m_byte_size, in DumpWithLevel()
|
| /freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/ |
| HD | ABISysV_ppc64.cpp | 552 uint64_t m_byte_size; member in __anon27e6ba0e0111::ReturnValueExtractor 569 m_byte_size(m_type.GetByteSize(&thread).value_or(0)), in ReturnValueExtractor() 570 m_data_up(new DataBufferHeap(m_byte_size, 0)), m_reg_ctx(reg_ctx), in ReturnValueExtractor() 596 switch (m_byte_size) { in GetIntegerValue() 699 if (m_byte_size > 2 * vr_size) { in GetVectorValueObject() 707 if (m_byte_size > vr_size) { in GetVectorValueObject() 740 if (m_byte_size < vr_size) in GetVectorValueObject() 741 offs = vr_size - m_byte_size; in GetVectorValueObject() 744 memcpy(m_data_up->GetBytes(), vr_data->GetBytes() + offs, m_byte_size); in GetVectorValueObject() 751 if (m_byte_size > 2 * sizeof(uint64_t)) { in GetStructValueObject() [all …]
|
| /freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| HD | GenericBitset.cpp | 56 uint8_t m_byte_size = 0; member in __anonb8428eac0111::GenericBitsetFrontEnd 66 m_byte_size = target_sp->GetArchitecture().GetAddressByteSize(); in GenericBitsetFrontEnd() 132 DataExtractor data(&value, sizeof(value), m_byte_order, m_byte_size); in GetChildAtIndex()
|
| /freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Breakpoint/ |
| HD | StoppointSite.h | 31 uint32_t GetByteSize() const { return m_byte_size; } in GetByteSize() 61 uint32_t m_byte_size; variable
|
| /freebsd-13-stable/contrib/llvm-project/lldb/source/Symbol/ |
| HD | Type.cpp | 281 m_byte_size = *byte_size; in Type() 284 m_byte_size = 0; in Type() 292 m_byte_size = 0; in Type() 314 s->Printf(", byte-size = %" PRIu64, m_byte_size); in GetDescription() 372 s->Printf(", size = %" PRIu64, m_byte_size); in Dump() 452 return static_cast<uint64_t>(m_byte_size); in GetByteSize() 468 m_byte_size = *size; in GetByteSize() 470 return static_cast<uint64_t>(m_byte_size); in GetByteSize() 475 m_byte_size = *size; in GetByteSize() 477 return static_cast<uint64_t>(m_byte_size); in GetByteSize() [all …]
|
| /freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| HD | Type.h | 548 uint64_t m_byte_size : 63; variable
|