| 171 | } |
| 172 | |
| 173 | bool VltMemoryChunk::isEmpty() const |
| 174 | { |
| 175 | return m_freeList.size() == 1 && m_freeList[0].length == m_memory.memSize; |
| 176 | } |
| 177 | |
| 178 | bool VltMemoryChunk::isCompatible(const Rc<VltMemoryChunk>& other) const |
| 179 | { |
no test coverage detected