Home
last modified time | relevance | path

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

/external/lldb/include/lldb/Core/
DValue.h55 const static size_t kMaxByteSize = 32u; variable
60 uint8_t bytes[kMaxByteSize];
92 ::memcpy(this->bytes, bytes, length < kMaxByteSize ? length : kMaxByteSize); in SetBytes()
99 return (length > 0 && length < kMaxByteSize && byte_order != lldb::eByteOrderInvalid); in IsValid()