| 67 | }; |
| 68 | |
| 69 | constexpr size_t __divmod(size_t __total_size, size_t __chunk_size) noexcept |
| 70 | { |
| 71 | return (__total_size / __chunk_size) + (__total_size % __chunk_size != 0); |
| 72 | } |
| 73 | |
| 74 | struct alignas(__STDCPP_DEFAULT_NEW_ALIGNMENT__) __memblock |
| 75 | { |
no outgoing calls
no test coverage detected