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.cpp343 lldb::Format item_format, size_t item_byte_size, size_t item_count, in DumpDataExtractor() argument
354 if (item_byte_size != 4 && item_byte_size != 8) in DumpDataExtractor()
355 item_byte_size = s->GetAddressByteSize(); in DumpDataExtractor()
370 item_byte_size > 8) in DumpDataExtractor()
416 if (item_byte_size <= 8) in DumpDataExtractor()
417 s->Printf("%s", DE.GetMaxU64Bitfield(&offset, item_byte_size, in DumpDataExtractor()
424 (uint64_t)item_byte_size); in DumpDataExtractor()
430 if (item_byte_size <= 8) { in DumpDataExtractor()
431 uint64_t uval64 = DE.GetMaxU64Bitfield(&offset, item_byte_size, in DumpDataExtractor()
442 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()
686 item_byte_size = m_format_options.GetByteSizeValue().GetCurrentValue(); in DoExecute()
688 item_byte_size = target->GetMaximumSizeOfStringSummary(); in DoExecute()
692 (item_byte_size + 1) * item_count, in DoExecute()
698 (uint64_t)((item_byte_size + 1) * item_count)); in DoExecute()
708 buffer.resize(item_byte_size + 1, 0); in DoExecute()
711 item_byte_size + 1, error); in DoExecute()
718 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,