Searched defs:ContiguousMemoryRange (Results 1 – 1 of 1) sorted by relevance
27 struct ContiguousMemoryRange { struct28 uint8_t* begin;29 uint8_t* end; // STL style: one byte past the end of the buffer.31 inline bool is_valid() const { return begin != nullptr; } in is_valid()32 inline void reset() { begin = nullptr; } in reset()33 inline size_t size() { return static_cast<size_t>(end - begin); } in size()