| 171 | } |
| 172 | |
| 173 | inline void* Allocate(size_t len) { |
| 174 | return RawAllocate(AlignUp<size_t>(len, PLATFORM_DATA_ALIGN)); |
| 175 | } |
| 176 | |
| 177 | inline void* Allocate(size_t len, size_t align) { |
| 178 | return RawAllocate(AlignUp<size_t>(len, PLATFORM_DATA_ALIGN), align); |
no test coverage detected