Home
last modified time | relevance | path

Searched refs:limit_byte_size (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValue.cpp350 uint32_t limit_byte_size = UINT32_MAX; in GetValueAsData() local
353 limit_byte_size = *type_size; in GetValueAsData()
355 if (limit_byte_size <= m_value.GetByteSize()) { in GetValueAsData()
356 if (m_value.GetData(data, limit_byte_size)) in GetValueAsData()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp85 bool Scalar::GetData(DataExtractor &data, size_t limit_byte_size) const { in GetData()
95 if (limit_byte_size < byte_size) { in GetData()
99 byte_size = limit_byte_size; in GetData()
104 offset = byte_size - limit_byte_size; in GetData()
105 byte_size = limit_byte_size; in GetData()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DScalar.h91 bool GetData(DataExtractor &data, size_t limit_byte_size = UINT32_MAX) const;