| 782 | } |
| 783 | |
| 784 | void Free(uint8_t* buffer, int64_t size, int64_t alignment) { |
| 785 | pool_->Free(buffer, size, alignment); |
| 786 | stats_.DidFreeBytes(size); |
| 787 | } |
| 788 | |
| 789 | void ReleaseUnused() { pool_->ReleaseUnused(); } |
| 790 |
nothing calls this directly
no test coverage detected