Searched refs:next_pow2_helper (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/contrib/llvm-project/compiler-rt/lib/xray/
H A Dxray_utils.h67 constexpr size_t next_pow2_helper(size_t num, size_t acc) { function in namespace:__xray
68 return (1u << acc) >= num ? (1u << acc) : next_pow2_helper(num, acc + 1);
72 return next_pow2_helper(number, 1);

Completed in 55 milliseconds