Searched refs:item_byte_size (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/lldb/source/Core/ |
D | DumpDataExtractor.cpp | 231 lldb::Format item_format, size_t item_byte_size, size_t item_count, in DumpDataExtractor() argument 242 if (item_byte_size != 4 && item_byte_size != 8) in DumpDataExtractor() 243 item_byte_size = s->GetAddressByteSize(); in DumpDataExtractor() 253 item_byte_size > 8) in DumpDataExtractor() 287 if (item_byte_size <= 8) in DumpDataExtractor() 288 s->Printf("%s", DE.GetMaxU64Bitfield(&offset, item_byte_size, in DumpDataExtractor() 295 (uint64_t)item_byte_size); in DumpDataExtractor() 301 if (item_byte_size <= 8) { in DumpDataExtractor() 302 uint64_t uval64 = DE.GetMaxU64Bitfield(&offset, item_byte_size, in DumpDataExtractor() 313 else if (item_byte_size > 0 && item_byte_size <= 8) in DumpDataExtractor() [all …]
|
/external/llvm-project/lldb/source/Commands/ |
D | CommandObjectMemory.cpp | 575 size_t item_byte_size = in DoExecute() local 584 total_byte_size = item_count * item_byte_size; in DoExecute() 625 item_count = total_byte_size / item_byte_size; in DoExecute() 696 item_byte_size = m_format_options.GetByteSizeValue().GetCurrentValue(); in DoExecute() 698 item_byte_size = target->GetMaximumSizeOfStringSummary(); in DoExecute() 702 (item_byte_size + 1) * item_count, in DoExecute() 708 (uint64_t)((item_byte_size + 1) * item_count)); in DoExecute() 719 buffer.resize(item_byte_size + 1, 0); in DoExecute() 722 item_byte_size + 1, error); in DoExecute() 730 if (item_byte_size == read) { in DoExecute() [all …]
|
/external/llvm-project/lldb/include/lldb/Core/ |
D | DumpDataExtractor.h | 83 lldb::Format item_format, size_t item_byte_size,
|