/external/llvm-project/lldb/include/lldb/Utility/ |
D | VMRange.h | 29 VMRange() : m_base_addr(0), m_byte_size(0) {} in VMRange() 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; variable
|
/external/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
D | UniqueDWARFASTType.h | 24 m_byte_size( in UniqueDWARFASTType() 31 m_byte_size(byte_size) {} in UniqueDWARFASTType() 35 m_declaration(rhs.m_declaration), m_byte_size(rhs.m_byte_size) {} in UniqueDWARFASTType() 44 m_byte_size = rhs.m_byte_size; 52 int32_t m_byte_size; variable
|
D | UniqueDWARFASTType.cpp | 21 if (udt.m_byte_size < 0 || byte_size < 0 || in Find() 22 udt.m_byte_size == byte_size) { in Find()
|
D | DWARFASTParserClang.cpp | 1666 unique_ast_entry_up->m_byte_size = attrs.byte_size.getValueOr(0); in ParseStructureLikeDIE()
|
/external/llvm-project/lldb/source/Interpreter/ |
D | OptionGroupFormat.cpp | 23 m_byte_size(default_byte_size, default_byte_size), in OptionGroupFormat() 46 if (m_byte_size.GetDefaultValue() < UINT64_MAX) { in GetDefinitions() 78 if (m_byte_size.GetDefaultValue() == 0) { in SetOptionValue() 81 error = m_byte_size.SetValueFromString(option_arg); in SetOptionValue() 82 if (m_byte_size.GetCurrentValue() == 0) in SetOptionValue() 120 const bool byte_size_enabled = m_byte_size.GetDefaultValue() < UINT64_MAX; in SetOptionValue() 153 m_byte_size.SetCurrentValue(byte_size); in SetOptionValue() 154 m_byte_size.SetOptionWasSet(); in SetOptionValue() 264 m_byte_size.Clear(); in OptionParsingStarting()
|
/external/llvm-project/lldb/include/lldb/Interpreter/ |
D | OptionGroupFormat.h | 51 OptionValueUInt64 &GetByteSizeValue() { return m_byte_size; } in GetByteSizeValue() 53 const OptionValueUInt64 &GetByteSizeValue() const { return m_byte_size; } in GetByteSizeValue() 62 return m_format.OptionWasSet() || m_byte_size.OptionWasSet() || in AnyOptionWasSet() 72 OptionValueUInt64 m_byte_size; variable
|
/external/llvm-project/lldb/source/Core/ |
D | AddressRange.cpp | 30 AddressRange::AddressRange() : m_base_addr(), m_byte_size(0) {} in AddressRange() 34 : m_base_addr(file_addr, section_list), m_byte_size(byte_size) {} in AddressRange() 38 : m_base_addr(section, offset), m_byte_size(byte_size) {} in AddressRange() 41 : 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()
|
D | ValueObjectConstResult.cpp | 208 if (!m_byte_size) { in GetByteSize() 213 return m_byte_size; in GetByteSize() 216 void ValueObjectConstResult::SetByteSize(size_t size) { m_byte_size = size; } in SetByteSize()
|
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()
|
D | Section.cpp | 162 m_file_addr(file_addr), m_byte_size(byte_size), in Section() 184 m_file_addr(file_addr), m_byte_size(byte_size), in Section() 304 VMRange range(addr, addr + m_byte_size); in Dump()
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | AddressRange.h | 222 lldb::addr_t GetByteSize() const { return m_byte_size; } in GetByteSize() 238 void SetByteSize(lldb::addr_t byte_size) { m_byte_size = byte_size; } in SetByteSize() 243 lldb::addr_t m_byte_size; ///< The size in bytes of this address range. variable
|
D | ValueObjectChild.h | 33 llvm::Optional<uint64_t> GetByteSize() override { return m_byte_size; } in GetByteSize() 66 uint64_t m_byte_size; variable
|
D | Section.h | 156 lldb::addr_t GetByteSize() const { return m_byte_size; } in GetByteSize() 158 void SetByteSize(lldb::addr_t byte_size) { m_byte_size = byte_size; } in SetByteSize() 248 lldb::addr_t m_byte_size; // Size in bytes that this section will occupy in variable
|
D | ValueObjectConstResult.h | 116 llvm::Optional<uint64_t> m_byte_size; variable
|
/external/llvm-project/lldb/tools/debugserver/source/ |
D | DNBBreakpoint.h | 30 nub_size_t ByteSize() const { return m_byte_size; } in ByteSize() 41 if (m_byte_size > 0) { in IntersectsRange() 42 const nub_addr_t bp_end_addr = m_addr + m_byte_size; in IntersectsRange() 104 uint32_t m_byte_size; // Length in bytes of the breakpoint if set in memory variable
|
D | DNBBreakpoint.cpp | 23 : m_retain_count(1), m_byte_size(static_cast<uint32_t>(byte_size)), in DNBBreakpoint() 39 (uint64_t)m_addr, (uint64_t)m_byte_size, in Dump()
|
/external/llvm-project/lldb/source/Breakpoint/ |
D | StoppointSite.cpp | 17 m_hardware_index(LLDB_INVALID_INDEX32), m_byte_size(0), m_hit_counter() {} in StoppointSite() 22 m_hardware_index(LLDB_INVALID_INDEX32), m_byte_size(byte_size), in StoppointSite()
|
D | BreakpointSite.cpp | 107 m_byte_size = trap_opcode_size; in SetTrapOpcode() 111 m_byte_size = 0; in SetTrapOpcode() 166 if (m_byte_size == 0) in IntersectsRange() 169 const lldb::addr_t bp_end_addr = m_addr + m_byte_size; in IntersectsRange()
|
D | Watchpoint.cpp | 195 GetID(), GetLoadAddress(), m_byte_size, in DumpWithLevel()
|
/external/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
D | LibCxxBitset.cpp | 44 uint8_t m_byte_size = 0; member in __anon1e9508570111::BitsetFrontEnd 53 m_byte_size = target_sp->GetArchitecture().GetAddressByteSize(); in BitsetFrontEnd() 107 DataExtractor data(&value, sizeof(value), m_byte_order, m_byte_size); in GetChildAtIndex()
|
/external/llvm-project/lldb/source/Symbol/ |
D | Type.cpp | 155 m_byte_size = *byte_size; in Type() 158 m_byte_size = 0; in Type() 168 m_byte_size = 0; in Type() 190 s->Printf(", byte-size = %" PRIu64, m_byte_size); in GetDescription() 245 s->Printf(", size = %" PRIu64, m_byte_size); in Dump() 343 return m_byte_size; in GetByteSize() 358 m_byte_size = *size; in GetByteSize() 360 return m_byte_size; in GetByteSize() 365 m_byte_size = *size; in GetByteSize() 367 return m_byte_size; in GetByteSize() [all …]
|
/external/llvm-project/lldb/source/Plugins/ABI/PowerPC/ |
D | ABISysV_ppc64.cpp | 553 uint64_t m_byte_size; member in __anon70fd7e2c0111::ReturnValueExtractor 570 m_byte_size(m_type.GetByteSize(&thread).getValueOr(0)), in ReturnValueExtractor() 571 m_data_up(new DataBufferHeap(m_byte_size, 0)), m_reg_ctx(reg_ctx), in ReturnValueExtractor() 597 switch (m_byte_size) { in GetIntegerValue() 700 if (m_byte_size > 2 * vr_size) { in GetVectorValueObject() 708 if (m_byte_size > vr_size) { in GetVectorValueObject() 741 if (m_byte_size < vr_size) in GetVectorValueObject() 742 offs = vr_size - m_byte_size; in GetVectorValueObject() 745 memcpy(m_data_up->GetBytes(), vr_data->GetBytes() + offs, m_byte_size); in GetVectorValueObject() 752 if (m_byte_size > 2 * sizeof(uint64_t)) { in GetStructValueObject() [all …]
|
/external/llvm-project/lldb/include/lldb/Breakpoint/ |
D | StoppointSite.h | 31 uint32_t GetByteSize() const { return m_byte_size; } in GetByteSize() 68 uint32_t m_byte_size; variable
|
/external/llvm-project/lldb/include/lldb/Symbol/ |
D | Type.h | 222 uint64_t m_byte_size : 63; variable
|