Searched refs:item_byte_size (Results 1 – 3 of 3) sorted by relevance
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Core/ |
| D | DataExtractor.cpp | 1416 size_t item_byte_size, in Dump() argument 1429 if (item_byte_size != 4 && item_byte_size != 8) in Dump() 1430 item_byte_size = s->GetAddressByteSize(); in Dump() 1481 if ((item_format == eFormatOSType || item_format == eFormatAddressInfo) && item_byte_size > 8) in Dump() 1515 if (item_byte_size <= 8) in Dump() 1516 …s->Printf ("%s", GetMaxU64Bitfield(&offset, item_byte_size, item_bit_size, item_bit_offset) ? "tru… in Dump() 1519 s->Printf("error: unsupported byte size (%zu) for boolean format", item_byte_size); in Dump() 1525 if (item_byte_size <= 8) in Dump() 1527 … uint64_t uval64 = GetMaxU64Bitfield(&offset, item_byte_size, item_bit_size, item_bit_offset); in Dump() 1537 else if (item_byte_size > 0 && item_byte_size <= 8) in Dump() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/source/Commands/ |
| D | CommandObjectMemory.cpp | 615 size_t item_byte_size = m_format_options.GetByteSizeValue().GetCurrentValue(); in DoExecute() local 620 total_byte_size = item_count * item_byte_size; in DoExecute() 660 item_count = total_byte_size / item_byte_size; in DoExecute() 717 item_byte_size = m_format_options.GetByteSizeValue().GetCurrentValue(); in DoExecute() 719 item_byte_size = target->GetMaximumSizeOfStringSummary(); in DoExecute() 722 …data_sp.reset (new DataBufferHeap ((item_byte_size+1) * item_count, '\0')); // account for NULLs a… in DoExecute() 725 …the memory read buffer, specify a smaller size to read", (uint64_t)((item_byte_size+1) * item_coun… in DoExecute() 736 buffer.resize(item_byte_size+1,0); in DoExecute() 738 … size_t read = target->ReadCStringFromMemory(data_addr, &buffer[0], item_byte_size+1, error); in DoExecute() 745 if (item_byte_size == read) in DoExecute() [all …]
|
| /freebsd-10-stable/contrib/llvm/tools/lldb/include/lldb/Core/ |
| D | DataExtractor.h | 280 size_t item_byte_size,
|