Browse Source
Merge pull request #5320 from ReinUsesLisp/div-ceil-type
common/div_ceil: Return numerator type
pull/15/merge
LC
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
5 additions and
5 deletions
-
src/common/div_ceil.h
|
|
|
@ -11,16 +11,16 @@ namespace Common { |
|
|
|
|
|
|
|
/// Ceiled integer division. |
|
|
|
template <typename N, typename D> |
|
|
|
requires std::is_integral_v<N>&& std::is_unsigned_v<D>[[nodiscard]] constexpr auto DivCeil( |
|
|
|
N number, D divisor) { |
|
|
|
return (static_cast<D>(number) + divisor - 1) / divisor; |
|
|
|
requires std::is_integral_v<N>&& std::is_unsigned_v<D>[[nodiscard]] constexpr N DivCeil(N number, |
|
|
|
D divisor) { |
|
|
|
return static_cast<N>((static_cast<D>(number) + divisor - 1) / divisor); |
|
|
|
} |
|
|
|
|
|
|
|
/// Ceiled integer division with logarithmic divisor in base 2 |
|
|
|
template <typename N, typename D> |
|
|
|
requires std::is_integral_v<N>&& std::is_unsigned_v<D>[[nodiscard]] constexpr auto DivCeilLog2( |
|
|
|
requires std::is_integral_v<N>&& std::is_unsigned_v<D>[[nodiscard]] constexpr N DivCeilLog2( |
|
|
|
N value, D alignment_log2) { |
|
|
|
return (static_cast<D>(value) + (D(1) << alignment_log2) - 1) >> alignment_log2; |
|
|
|
return static_cast<N>((static_cast<D>(value) + (D(1) << alignment_log2) - 1) >> alignment_log2); |
|
|
|
} |
|
|
|
|
|
|
|
} // namespace Common |