| 543 | } |
| 544 | |
| 545 | size_t MemoryAccountant::maximumAllocationAtATimeOfSize(size_t size) const |
| 546 | { |
| 547 | MemoryAccountantAllocationNode* node = findNodeOfSize(size); |
| 548 | if (node) |
| 549 | return node->maxAllocations_; |
| 550 | return 0; |
| 551 | } |
| 552 | |
| 553 | size_t MemoryAccountant::totalAllocations() const |
| 554 | { |