| 574 | } |
| 575 | |
| 576 | void Deallocate(void* ptr) { |
| 577 | GetThreadLocalCache()->Deallocate(AllocatedSize(ptr), ptr); |
| 578 | } |
| 579 | |
| 580 | size_t AllocatedSize(const void* ptr) const { |
| 581 | auto bin = page_map_->GetBin(ptr); |
nothing calls this directly
no test coverage detected