Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Utility/
H A 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()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectMemory.cpp546 size_t total_byte_size = 0; in DoExecute() local
551 total_byte_size = m_prev_byte_size; in DoExecute()
580 if (total_byte_size == 0) { in DoExecute()
581 total_byte_size = item_count * item_byte_size; in DoExecute()
582 if (total_byte_size == 0) in DoExecute()
583 total_byte_size = 32; in DoExecute()
627 total_byte_size = end_addr - addr; in DoExecute()
628 item_count = total_byte_size / item_byte_size; in DoExecute()
669 (uint32_t)total_byte_size); in DoExecute()
687 if (bytes_read < total_byte_size) in DoExecute()
[all …]