Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DRegisterValue.cpp285 size_t total_byte_size) { in UInt64ValueIsValidForByteSize() argument
286 if (total_byte_size > 8) in UInt64ValueIsValidForByteSize()
289 if (total_byte_size == 8) in UInt64ValueIsValidForByteSize()
293 (static_cast<uint64_t>(1) << static_cast<uint64_t>(total_byte_size * 8)) - in UInt64ValueIsValidForByteSize()
299 size_t total_byte_size) { in SInt64ValueIsValidForByteSize() argument
300 if (total_byte_size > 8) in SInt64ValueIsValidForByteSize()
303 if (total_byte_size == 8) in SInt64ValueIsValidForByteSize()
307 << static_cast<uint64_t>(total_byte_size * 8 - 1)) - in SInt64ValueIsValidForByteSize()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectMemory.cpp544 size_t total_byte_size = 0; in DoExecute() local
549 total_byte_size = m_prev_byte_size; in DoExecute()
578 if (total_byte_size == 0) { in DoExecute()
579 total_byte_size = item_count * item_byte_size; in DoExecute()
580 if (total_byte_size == 0) in DoExecute()
581 total_byte_size = 32; in DoExecute()
616 total_byte_size = end_addr - addr; in DoExecute()
617 item_count = total_byte_size / item_byte_size; in DoExecute()
658 (uint32_t)total_byte_size); in DoExecute()
676 if (bytes_read < total_byte_size) in DoExecute()
[all …]