#pragma once #include #include inline static size_t math_ceil_div(size_t numer, size_t denom) { return (numer + denom - 1) / denom; } inline static size_t math_max(size_t a, size_t b) { return a >= b ? a : b; } inline static size_t math_min(size_t a, size_t b) { return a < b ? a : b; } static size_t math_round_up_po2(size_t bytes, size_t multiple) { const size_t multiple_mask = multiple - 1; if ((bytes & multiple_mask) != 0) { bytes |= multiple_mask; bytes += 1; } return bytes; }