Searched refs:constexpr_log2_ (Results 1 – 1 of 1) sorted by relevance
20 constexpr T constexpr_log2_(T a, T e) { in constexpr_log2_() function21 return e == T(1) ? a : constexpr_log2_(a + T(1), e / T(2)); in constexpr_log2_()37 return detail::constexpr_log2_(T(0), t); in constexpr_log2()