Searched refs:GetByteSize (Results 51 - 75 of 197) sorted by relevance

12345678

/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DCompactUnwindInfo.cpp248 m_section_contents_if_encrypted.reset (new DataBufferHeap (m_section_sp->GetByteSize(), 0));
253 m_section_sp->GetByteSize(), error) == m_section_sp->GetByteSize() && error.Success())
264 if (m_unwindinfo_data.GetByteSize() != m_section_sp->GetByteSize())
269 if (m_unwindinfo_data.GetByteSize() > 0)
292 if (m_unwind_header.common_encodings_array_offset > m_unwindinfo_data.GetByteSize()
293 || m_unwind_header.personality_array_offset > m_unwindinfo_data.GetByteSize()
294 || indexSectionOffset > m_unwindinfo_data.GetByteSize()
295 || offset > m_unwindinfo_data.GetByteSize())
[all...]
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Target/
H A DSectionLoadList.cpp97 if (section->GetByteSize() == 0)
248 if (offset < pos->second->GetByteSize())
264 if (offset < rpos->second->GetByteSize())
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DDataExtractor.cpp199 offset_t bytes_available = data.GetByteSize() - offset;
306 return GetByteSize();
340 if (data_length > data.GetByteSize() - data_offset)
341 data_length = data.GetByteSize() - data_offset;
371 const size_t data_size = data_sp->GetByteSize();
385 size_t new_size = GetByteSize();
2196 size_t data_size = GetByteSize();
2199 return GetByteSize();
2208 if (rhs.GetByteSize() == 0)
2211 if (GetByteSize()
[all...]
H A DSourceManager.cpp451 if (line_offset < m_data_sp->GetByteSize())
465 end_offset = m_data_sp->GetByteSize();
528 end_line_offset = m_data_sp->GetByteSize();
612 const char *end = start + m_data_sp->GetByteSize();
669 end_offset = m_data_sp->GetByteSize();
H A DDisassembler.cpp241 if (range.GetByteSize() > 0 && range.GetBaseAddress().IsValid())
303 if (disasm_range.GetByteSize())
311 range.SetByteSize (disasm_range.GetByteSize());
551 range.SetByteSize (sc.symbol->GetByteSize());
558 if (range.GetBaseAddress().IsValid() && range.GetByteSize() == 0)
1004 uint32_t inst_size = (*pos)->GetOpcode().GetByteSize();
1165 const addr_t byte_size = range.GetByteSize();
1177 heap_buffer->GetByteSize(),
1183 if (bytes_read != heap_buffer->GetByteSize())
1340 return m_opcode.GetByteSize();
[all...]
H A DValueObjectConstResult.cpp91 DataBufferSP shared_data_buffer(new DataBufferHeap(data.GetDataStart(), data.GetByteSize()));
257 ValueObjectConstResult::GetByteSize() function in class:ValueObjectConstResult
262 SetByteSize(GetCompilerType().GetByteSize(exe_ctx.GetBestExecutionContextScope()));
H A DValueObjectRegister.cpp77 ValueObjectRegisterContext::GetByteSize() function in class:ValueObjectRegisterContext
179 ValueObjectRegisterSet::GetByteSize() function in class:ValueObjectRegisterSet
352 ValueObjectRegister::GetByteSize() function in class:ValueObjectRegister
H A DOpcode.cpp95 uint32_t byte_size = GetByteSize ();
H A DDataBufferMemoryMap.cpp77 DataBufferMemoryMap::GetByteSize() const function in class:DataBufferMemoryMap
320 return GetByteSize ();
H A DValueObjectDynamicValue.cpp129 ValueObjectDynamicValue::GetByteSize() function in class:ValueObjectDynamicValue
138 return m_parent->GetByteSize();
H A DValueObjectSyntheticFilter.cpp137 ValueObjectSynthetic::GetByteSize() function in class:ValueObjectSynthetic
139 return m_parent->GetByteSize();
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DMappedHash.h93 GetByteSize() const function in struct:MappedHash::Header
105 GetByteSize (const HeaderData &header_data) = 0;
209 GetByteSize (const HashData &key_to_key_values) = 0;
242 header.prologue_length = header_data.GetByteSize();
270 //StreamString hash_file_data(Stream::eBinary, dwarf->GetObjectFile()->GetAddressByteSize(), dwarf->GetObjectFile()->GetByteSize());
304 hash_offsets.push_back (GetByteSize (pos->second));
H A DDataExtractor.h399 GetByteSize () const function in class:lldb_private::DataExtractor
1288 return offset < GetByteSize();
1316 const lldb::offset_t size = GetByteSize();
H A DVMRange.h79 GetByteSize () const function in class:lldb_private::VMRange
H A DValueObjectSyntheticFilter.h37 GetByteSize() override;
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/FreeBSD/
H A DRegisterContextPOSIXProcessMonitor_x86.cpp172 value_to_write.SetBytes(dst, full_value.GetByteSize(), byte_order);
228 if (value.GetByteSize() > reg_info->byte_size)
302 ::memcpy (m_fpr.xstate.fxsave.stmm[reg - m_reg_info.first_st].bytes, value.GetBytes(), value.GetByteSize());
305 ::memcpy (m_fpr.xstate.fxsave.stmm[reg - m_reg_info.first_mm].bytes, value.GetBytes(), value.GetByteSize());
308 ::memcpy (m_fpr.xstate.fxsave.xmm[reg - m_reg_info.first_xmm].bytes, value.GetBytes(), value.GetByteSize());
316 ::memcpy (m_ymm_set.ymm[reg - m_reg_info.first_ymm].bytes, value.GetBytes(), value.GetByteSize());
403 if (data_sp && data_sp->GetByteSize() == REG_CONTEXT_SIZE)
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Target/
H A DMemory.h112 GetByteSize () const function in class:lldb_private::AllocatedBlock
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Commands/
H A DCommandObjectDisassemble.cpp405 range.SetByteSize(symbol->GetByteSize());
411 if (range.GetByteSize() == 0)
575 range.SetByteSize (sc.symbol->GetByteSize());
592 if (cur_range.GetByteSize() == 0)
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Language/CPlusPlus/
H A DLibCxxInitializerList.cpp119 m_element_size = m_element_type.GetByteSize(nullptr);
H A DLibCxxVector.cpp128 m_element_size = m_element_type.GetByteSize(nullptr);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Language/Go/
H A DGoFormatterFunctions.cpp54 object_at_idx += idx * m_type.GetByteSize(nullptr);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolVendor/ELF/
H A DSymbolVendorELF.cpp128 ObjectFileSP dsym_objfile_sp = ObjectFile::FindPlugin(module_sp, &dsym_fspec, 0, dsym_fspec.GetByteSize(), dsym_file_data_sp, dsym_file_data_offset);
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Expression/
H A DExpressionVariable.h54 GetByteSize () function in class:lldb_private::ExpressionVariable
56 return m_frozen_sp->GetByteSize();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/API/
H A DSBInstruction.cpp131 SBInstruction::GetByteSize () function in class:SBInstruction
134 return m_opaque_sp->GetOpcode().GetByteSize();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DTypeFormat.cpp127 valobj->GetByteSize(), // Byte size of item in "m_data"
232 data.GetByteSize(),

Completed in 133 milliseconds

12345678