Home
last modified time | relevance | path

Searched refs:item_byte_size (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDumpDataExtractor.cpp344 lldb::Format item_format, size_t item_byte_size, size_t item_count, in DumpDataExtractor() argument
355 if (item_byte_size != 4 && item_byte_size != 8) in DumpDataExtractor()
356 item_byte_size = s->GetAddressByteSize(); in DumpDataExtractor()
371 item_byte_size > 8) in DumpDataExtractor()
417 if (item_byte_size <= 8) in DumpDataExtractor()
418 s->Printf("%s", DE.GetMaxU64Bitfield(&offset, item_byte_size, in DumpDataExtractor()
425 (uint64_t)item_byte_size); in DumpDataExtractor()
431 if (item_byte_size <= 8) { in DumpDataExtractor()
432 uint64_t uval64 = DE.GetMaxU64Bitfield(&offset, item_byte_size, in DumpDataExtractor()
443 else if (item_byte_size > 0 && item_byte_size <= 8) in DumpDataExtractor()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp570 size_t item_byte_size = in DoExecute() local
579 total_byte_size = item_count * item_byte_size; in DoExecute()
617 item_count = total_byte_size / item_byte_size; in DoExecute()
687 item_byte_size = m_format_options.GetByteSizeValue().GetCurrentValue(); in DoExecute()
689 item_byte_size = target->GetMaximumSizeOfStringSummary(); in DoExecute()
693 (item_byte_size + 1) * item_count, in DoExecute()
699 (uint64_t)((item_byte_size + 1) * item_count)); in DoExecute()
709 buffer.resize(item_byte_size + 1, 0); in DoExecute()
712 item_byte_size + 1, error); in DoExecute()
719 if (item_byte_size == read) { in DoExecute()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DDumpDataExtractor.h92 lldb::Format item_format, size_t item_byte_size,