| 142 | class Pow2Rounder : public RoundUpInterface { |
| 143 | public: |
| 144 | size_t RoundUp(size_t num_bytes) override { |
| 145 | return 1uLL << Log2Ceiling64(num_bytes); |
| 146 | } |
| 147 | }; |
| 148 | |
| 149 | class BasicCPUAllocator : public SubAllocator { |
nothing calls this directly
no test coverage detected