| 535 | } |
| 536 | |
| 537 | size_t MemoryAccountant::totalDeallocationsOfSize(size_t size) const |
| 538 | { |
| 539 | MemoryAccountantAllocationNode* node = findNodeOfSize(size); |
| 540 | if (node) |
| 541 | return node->deallocations_; |
| 542 | return 0; |
| 543 | } |
| 544 | |
| 545 | size_t MemoryAccountant::maximumAllocationAtATimeOfSize(size_t size) const |
| 546 | { |