| 535 | } |
| 536 | |
| 537 | void BFCAllocator::DeallocateRaw(void* ptr) { |
| 538 | VLOG(3) << "DeallocateRaw " << Name() << " " |
| 539 | << (ptr ? RequestedSize(ptr) : 0); |
| 540 | DeallocateRawInternal(ptr); |
| 541 | retry_helper_.NotifyDealloc(); |
| 542 | } |
| 543 | |
| 544 | void BFCAllocator::DeallocateRawInternal(void* ptr) { |
| 545 | if (ptr == nullptr) { |