| 76 | } |
| 77 | |
| 78 | void RandomContentCheck(const Entry& entry) |
| 79 | { |
| 80 | std::vector<std::byte> expect(entry.span.size()); |
| 81 | InsecureRandomContext(entry.seed).fillrand(expect); |
| 82 | assert(std::ranges::equal(entry.span, expect)); |
| 83 | } |
| 84 | |
| 85 | void Deallocate(const Entry& entry) |
| 86 | { |
nothing calls this directly
no test coverage detected