| 570 | } |
| 571 | |
| 572 | size_t BatchAllocate(size_t num, size_t num_bytes, void** ret) { |
| 573 | return GetThreadLocalCache()->BatchAllocate(num, num_bytes, ret); |
| 574 | } |
| 575 | |
| 576 | void Deallocate(void* ptr) { |
| 577 | GetThreadLocalCache()->Deallocate(AllocatedSize(ptr), ptr); |
nothing calls this directly
no test coverage detected