Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Utility/
HDVMRange.h33 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/
HDOptionGroupFormat.cpp38 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/
HDAddressRange.cpp36 : 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 ==()
HDValueObjectConstResult.cpp209 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()
HDValueObjectChild.cpp36 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()
HDSection.cpp166 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/
HDOptionGroupFormat.h56 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/
HDUniqueDWARFASTType.h29 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
HDUniqueDWARFASTType.cpp34 : (udt.m_byte_size < 0 || byte_size < 0 || in Find()
35 udt.m_byte_size == byte_size) && in Find()
HDDWARFASTParserClang.cpp1841 unique_ast_entry_up->m_byte_size = byte_size; in ParseStructureLikeDIE()
/freebsd-13-stable/contrib/llvm-project/lldb/include/lldb/Core/
HDAddressRange.h223 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
HDValueObjectChild.h32 std::optional<uint64_t> GetByteSize() override { return m_byte_size; } in GetByteSize()
65 uint64_t m_byte_size; variable
HDSection.h170 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
HDValueObjectConstResult.h114 std::optional<uint64_t> m_byte_size; variable
/freebsd-13-stable/contrib/llvm-project/lldb/source/Breakpoint/
HDStoppointSite.cpp16 : 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()
HDBreakpointSite.cpp105 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()
HDWatchpoint.cpp354 GetID(), GetLoadAddress(), m_byte_size, in DumpWithLevel()
/freebsd-13-stable/contrib/llvm-project/lldb/source/Plugins/ABI/PowerPC/
HDABISysV_ppc64.cpp552 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/
HDGenericBitset.cpp56 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/
HDStoppointSite.h31 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/
HDType.cpp281 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/
HDType.h548 uint64_t m_byte_size : 63; variable