Searched defs:div_round_up (Results 1 – 3 of 3) sorted by relevance
23 inline uint64_t div_round_up(uint64_t x, uint64_t y) { return (x + y - 1) / y; } in div_round_up() function
30 inline uint32_t div_round_up(uint32_t dividend, uint32_t divisor) { in div_round_up() function
53 constexpr unsigned int div_round_up(unsigned int x, unsigned int y) { in div_round_up() function