Searched refs:GetByteSize (Results 1 - 25 of 209) sorted by relevance

123456789

/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataBuffer.h71 virtual lldb::offset_t GetByteSize() const = 0;
74 return llvm::ArrayRef<uint8_t>(GetBytes(), GetByteSize());
78 return llvm::MutableArrayRef<uint8_t>(GetBytes(), GetByteSize());
H A DDataEncoder.h175 const uint32_t size = GetByteSize();
220 bool ValidOffset(uint32_t offset) const { return offset < GetByteSize(); }
226 size_t GetByteSize() const { return m_end - m_start; } function in class:lldb_private::DataEncoder
H A DDataBufferLLVM.h32 lldb::offset_t GetByteSize() const override;
H A DDataBufferHeap.h69 /// \copydoc DataBuffer::GetByteSize() const
70 lldb::offset_t GetByteSize() const override;
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DAddressRange.cpp48 // const addr_t byte_size = GetByteSize();
64 return (addr.GetOffset() - m_base_addr.GetOffset()) < GetByteSize();
74 return (file_addr - file_base_addr) < GetByteSize();
88 return (file_addr - file_base_addr) < GetByteSize();
96 return (addr.GetOffset() - m_base_addr.GetOffset()) < GetByteSize();
106 return (load_addr - load_base_addr) < GetByteSize();
120 return (load_addr - load_base_addr) < GetByteSize();
126 addr_t lhs_end_addr = GetBaseAddress().GetFileAddress() + GetByteSize();
134 addr_t rhs_end_addr = rhs_base_addr + rhs_range.GetByteSize();
164 DumpAddress(s->AsRawOstream(), m_base_addr.GetOffset() + GetByteSize(),
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDataExtractor.cpp27 GetByteSize()),
H A DSymbolFileDWARFDwp.cpp49 lldb_private::FileSystem::Instance().GetByteSize(file_spec), file_data_sp,
63 llvm::StringRef(debug_cu_index.PeekCStr(0), debug_cu_index.GetByteSize()),
106 data.SetData(section_data, 0, section_data.GetByteSize());
117 if (it->second.GetByteSize() == 0)
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
H A DUnwindAssembly-x86.cpp45 if (!func.GetBaseAddress().IsValid() || func.GetByteSize() == 0)
53 std::vector<uint8_t> function_text(func.GetByteSize());
57 func.GetByteSize(), error) == func.GetByteSize()) {
61 function_text.data(), func.GetByteSize(), func, unwind_plan);
150 if (!func.GetBaseAddress().IsValid() || func.GetByteSize() == 0)
155 std::vector<uint8_t> function_text(func.GetByteSize());
159 func.GetByteSize(), error) == func.GetByteSize()) {
163 function_text.data(), func.GetByteSize(), fun
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Utility/
H A DDataBufferLLVM.cpp34 lldb::offset_t DataBufferLLVM::GetByteSize() const { function in class:DataBufferLLVM
H A DDataExtractor.cpp165 offset_t bytes_available = data.GetByteSize() - offset;
237 return GetByteSize();
264 if (data_length > data.GetByteSize() - data_offset)
265 data_length = data.GetByteSize() - data_offset;
291 const size_t data_size = data_sp->GetByteSize();
305 size_t new_size = GetByteSize();
1050 size_t data_size = GetByteSize();
1053 return GetByteSize();
1060 if (rhs.GetByteSize() == 0)
1063 if (GetByteSize()
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DRegisterContextMemory.cpp109 data_sp->GetByteSize(),
110 error) == data_sp->GetByteSize()) {
127 data_sp->GetByteSize(),
128 error) == data_sp->GetByteSize())
/freebsd-11-stable/contrib/llvm-project/lldb/source/Expression/
H A DMaterializer.cpp70 m_persistent_variable_sp->GetByteSize(), 8,
109 m_persistent_variable_sp->GetByteSize(), write_error);
237 m_persistent_variable_sp->GetByteSize());
282 (unsigned long long)m_persistent_variable_sp->GetByteSize());
291 m_persistent_variable_sp->GetByteSize(), read_error);
355 DumpHexBytes(&dump_stream, data.GetBytes(), data.GetByteSize(), 16,
372 DataBufferHeap data(m_persistent_variable_sp->GetByteSize(), 0);
375 m_persistent_variable_sp->GetByteSize(), err);
380 DumpHexBytes(&dump_stream, data.GetBytes(), data.GetByteSize(), 16,
516 if (data.GetByteSize() < m_variable_s
[all...]
H A DExpressionVariable.cpp19 const size_t byte_size = m_frozen_sp->GetByteSize();
21 if (m_frozen_sp->GetDataExtractor().GetByteSize() < byte_size) {
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Target/
H A DMemory.h80 uint32_t GetByteSize() const { return m_range.GetByteSize(); } function in class:lldb_private::AllocatedBlock
91 uint32_t TotalChunks() const { return GetByteSize() / GetChunkSize(); }
H A DProcessStructReader.h60 auto size = field_type.GetByteSize(nullptr);
69 auto total_size = struct_type.GetByteSize(nullptr);
90 if (offset + size > m_data.GetByteSize())
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_powerpc.cpp24 gpregset.GetByteSize());
31 fpregset.GetByteSize());
37 vregset.GetByteSize());
H A DRegisterContextPOSIXCore_ppc64le.cpp27 gpregset.GetByteSize());
34 fpregset.GetByteSize());
40 vmxregset.GetByteSize());
46 vsxregset.GetByteSize());
H A DRegisterContextPOSIXCore_mips64.cpp23 gpregset.GetByteSize());
30 fpregset.GetByteSize());
H A DRegisterContextPOSIXCore_s390x.cpp24 gpregset.GetByteSize());
31 fpregset.GetByteSize());
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectCast.h33 uint64_t GetByteSize() override;
H A DValueObjectRegister.h37 uint64_t GetByteSize() override;
76 uint64_t GetByteSize() override;
123 uint64_t GetByteSize() override;
/freebsd-11-stable/contrib/llvm-project/lldb/bindings/interface/
H A DSBInstruction.i48 GetByteSize ();
96 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes for this instruction as an integer.''')
H A DSBSection.i76 GetByteSize ();
135 size = property(GetByteSize, None, doc='''A read only property that returns the size in bytes of this section as an integer.''')
/freebsd-11-stable/contrib/llvm-project/lldb/source/Symbol/
H A DSymbol.cpp58 m_size_is_valid(size_is_valid || range.GetByteSize() > 0),
145 intptr_t str_ptr = m_addr_range.GetByteSize();
171 return m_size_is_sibling ? m_addr_range.GetByteSize() : UINT32_MAX;
184 const lldb::addr_t byte_size = GetByteSize();
220 GetByteSize();
236 s->Printf(format, GetByteSize(), m_flags, name.AsCString(""));
243 intptr_t shlib = m_addr_range.GetByteSize();
255 s->Printf(format, m_addr_range.GetBaseAddress().GetOffset(), GetByteSize(),
280 m_type_data = sc.line_entry.range.GetByteSize();
306 addr.Slide(sc_temp.line_entry.range.GetByteSize());
413 lldb::addr_t Symbol::GetByteSize() const { return m_addr_range.GetByteSize(); } function in class:Symbol
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/API/
H A DSBSection.cpp147 lldb::addr_t SBSection::GetByteSize() { function in class:SBSection
148 LLDB_RECORD_METHOD_NO_ARGS(lldb::addr_t, SBSection, GetByteSize);
152 return section_sp->GetByteSize();
204 file_size = section_sp->GetByteSize();
212 if (data_buffer_sp && data_buffer_sp->GetByteSize() > 0) {
283 file_addr + section_sp->GetByteSize());
313 LLDB_REGISTER_METHOD(lldb::addr_t, SBSection, GetByteSize, ());

Completed in 206 milliseconds

123456789