Home
last modified time | relevance | path

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

/third_party/boost/boost/math/special_functions/
Dcbrt.hpp88 int i_exp3 = i_exp / 3; in cbrt_imp() local
94 if(abs(i_exp3) < std::numeric_limits<shift_type>::digits) in cbrt_imp()
96 if(i_exp3 > 0) in cbrt_imp()
97 guess *= shift_type(1u) << i_exp3; in cbrt_imp()
99 guess /= shift_type(1u) << -i_exp3; in cbrt_imp()
103 guess = ldexp(guess, i_exp3); in cbrt_imp()