Home
last modified time | relevance | path

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

/llvm-project-15.0.7/lldb/source/Utility/
H A DScalar.cpp84 bool Scalar::GetData(DataExtractor &data, size_t limit_byte_size) const { in GetData()
94 if (limit_byte_size < byte_size) { in GetData()
98 byte_size = limit_byte_size; in GetData()
103 offset = byte_size - limit_byte_size; in GetData()
104 byte_size = limit_byte_size; in GetData()
/llvm-project-15.0.7/lldb/source/Core/
H A DValue.cpp324 uint32_t limit_byte_size = UINT32_MAX; in GetValueAsData() local
327 limit_byte_size = *type_size; in GetValueAsData()
329 if (limit_byte_size <= m_value.GetByteSize()) { in GetValueAsData()
330 if (m_value.GetData(data, limit_byte_size)) in GetValueAsData()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DScalar.h90 bool GetData(DataExtractor &data, size_t limit_byte_size = UINT32_MAX) const;