Searched refs:item_byte_size (Results 1 – 3 of 3) sorted by relevance
| /NextBSD/contrib/llvm/tools/lldb/source/Core/ |
| HD | DataExtractor.cpp | 1405 size_t item_byte_size, in Dump() argument 1418 if (item_byte_size != 4 && item_byte_size != 8) in Dump() 1419 item_byte_size = s->GetAddressByteSize(); in Dump() 1470 if ((item_format == eFormatOSType || item_format == eFormatAddressInfo) && item_byte_size > 8) in Dump() 1506 if (item_byte_size <= 8) in Dump() 1507 …s->Printf ("%s", GetMaxU64Bitfield(&offset, item_byte_size, item_bit_size, item_bit_offset) ? "tru… in Dump() 1510 …>Printf("error: unsupported byte size (%" PRIu64 ") for boolean format", (uint64_t)item_byte_size); in Dump() 1516 if (item_byte_size <= 8) in Dump() 1518 … uint64_t uval64 = GetMaxU64Bitfield(&offset, item_byte_size, item_bit_size, item_bit_offset); in Dump() 1528 else if (item_byte_size > 0 && item_byte_size <= 8) in Dump() [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/source/Commands/ |
| HD | CommandObjectMemory.cpp | 623 size_t item_byte_size = in DoExecute() local 632 total_byte_size = item_count * item_byte_size; in DoExecute() 672 item_count = total_byte_size / item_byte_size; in DoExecute() 729 item_byte_size = m_format_options.GetByteSizeValue().GetCurrentValue(); in DoExecute() 731 item_byte_size = target->GetMaximumSizeOfStringSummary(); in DoExecute() 734 …data_sp.reset (new DataBufferHeap ((item_byte_size+1) * item_count, '\0')); // account for NULLs a… in DoExecute() 737 …the memory read buffer, specify a smaller size to read", (uint64_t)((item_byte_size+1) * item_coun… in DoExecute() 749 buffer.resize(item_byte_size+1,0); in DoExecute() 751 … size_t read = target->ReadCStringFromMemory(data_addr, &buffer[0], item_byte_size+1, error); in DoExecute() 759 if (item_byte_size == read) in DoExecute() [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/ |
| HD | DataExtractor.h | 293 size_t item_byte_size,
|