Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/include/__bit/
H A Dbit_width.h26 return __t == 0 ? 0 : std::__bit_log2(__t) + 1; in bit_width()
H A Dbit_log2.h26 _LIBCPP_HIDE_FROM_ABI constexpr _Tp __bit_log2(_Tp __t) noexcept { in __bit_log2() function
H A Dbit_floor.h27 return __t == 0 ? 0 : _Tp{1} << std::__bit_log2(__t); in bit_floor()
/freebsd/contrib/llvm-project/libcxx/src/
H A Dalgorithm.cpp16 auto depth_limit = 2 * std::__bit_log2(static_cast<size_t>(last - first)); in __sort()