Home
last modified time | relevance | path

Searched refs:constexpr_log2_ (Results 1 – 1 of 1) sorted by relevance

/rocksdb-6.9/third-party/folly/folly/
DConstexprMath.h20 constexpr T constexpr_log2_(T a, T e) { in constexpr_log2_() function
21 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()