Home
last modified time | relevance | path

Searched refs:total_byte_size (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/lldb/source/Utility/
DRegisterValue.cpp307 size_t total_byte_size) { in UInt64ValueIsValidForByteSize() argument
308 if (total_byte_size > 8) in UInt64ValueIsValidForByteSize()
311 if (total_byte_size == 8) in UInt64ValueIsValidForByteSize()
315 (static_cast<uint64_t>(1) << static_cast<uint64_t>(total_byte_size * 8)) - in UInt64ValueIsValidForByteSize()
321 size_t total_byte_size) { in SInt64ValueIsValidForByteSize() argument
322 if (total_byte_size > 8) in SInt64ValueIsValidForByteSize()
325 if (total_byte_size == 8) in SInt64ValueIsValidForByteSize()
329 << static_cast<uint64_t>(total_byte_size * 8 - 1)) - in SInt64ValueIsValidForByteSize()
/external/llvm-project/lldb/source/Commands/
DCommandObjectMemory.cpp551 size_t total_byte_size = 0; in DoExecute() local
556 total_byte_size = m_prev_byte_size; in DoExecute()
583 if (total_byte_size == 0) { in DoExecute()
584 total_byte_size = item_count * item_byte_size; in DoExecute()
585 if (total_byte_size == 0) in DoExecute()
586 total_byte_size = 32; in DoExecute()
624 total_byte_size = end_addr - addr; in DoExecute()
625 item_count = total_byte_size / item_byte_size; in DoExecute()
630 if (total_byte_size > max_unforced_size && !m_memory_options.m_force) { in DoExecute()
661 data_sp = std::make_shared<DataBufferHeap>(total_byte_size, '\0'); in DoExecute()
[all …]