Lines Matching refs:__e
67 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline int32_t __pow5bits(const int32_t __e) { in __pow5bits() argument
71 _LIBCPP_ASSERT(__e >= 0, ""); in __pow5bits()
72 _LIBCPP_ASSERT(__e <= 3528, ""); in __pow5bits()
73 return static_cast<int32_t>(((static_cast<uint32_t>(__e) * 1217359) >> 19) + 1); in __pow5bits()
77 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint32_t __log10Pow2(const int32_t __e) { in __log10Pow2() argument
79 _LIBCPP_ASSERT(__e >= 0, ""); in __log10Pow2()
80 _LIBCPP_ASSERT(__e <= 1650, ""); in __log10Pow2()
81 return (static_cast<uint32_t>(__e) * 78913) >> 18; in __log10Pow2()
85 [[nodiscard]] _LIBCPP_HIDE_FROM_ABI inline uint32_t __log10Pow5(const int32_t __e) { in __log10Pow5() argument
87 _LIBCPP_ASSERT(__e >= 0, ""); in __log10Pow5()
88 _LIBCPP_ASSERT(__e <= 2620, ""); in __log10Pow5()
89 return (static_cast<uint32_t>(__e) * 732923) >> 20; in __log10Pow5()