| 565 | } |
| 566 | |
| 567 | void* Allocate(size_t num_bytes) { |
| 568 | |
| 569 | return GetThreadLocalCache()->Allocate(num_bytes); |
| 570 | } |
| 571 | |
| 572 | size_t BatchAllocate(size_t num, size_t num_bytes, void** ret) { |
| 573 | return GetThreadLocalCache()->BatchAllocate(num, num_bytes, ret); |