| 578 | } |
| 579 | |
| 580 | size_t AllocatedSize(const void* ptr) const { |
| 581 | auto bin = page_map_->GetBin(ptr); |
| 582 | if (bin != nullptr) { |
| 583 | return bin->BinSize(); |
| 584 | } |
| 585 | return 0; |
| 586 | } |
| 587 | |
| 588 | private: |
| 589 | ThreadLocalCache<ChunkType>* GetThreadLocalCache() { |
no test coverage detected