15#ifdef VECMEM_HAVE_LZCNT_U64
28 return ((
x & (
x - 1)) ==
static_cast<std::size_t
>(0));
36inline std::size_t
clzl(std::size_t
i) {
38#if defined(VECMEM_HAVE_LZCNT_U64)
40#elif defined(VECMEM_HAVE_BUILTIN_CLZL)
46 << (std::numeric_limits<std::size_t>::digits - 1UL)));
58inline std::size_t
log2(std::size_t
x) {
92 if ((
static_cast<std::size_t
>(1UL) <<
i) >= size) {
Namespace for types that should not be used directly by clients.
Definition array.hpp:23
std::size_t log2_ri(std::size_t x)
Compute the base-2 logarithm of a number, rounding up to the nearest log.
Definition integer_math.hpp:70
std::size_t round_up(std::size_t size)
Rounds a size up to the nearest power of two, and returns the power (not the size itself).
Definition integer_math.hpp:88
std::size_t clzl(std::size_t i)
Count the leading zeroes in a number.
Definition integer_math.hpp:36
bool is_power_of_2(std::size_t x)
Check if a number is a power of 2.
Definition integer_math.hpp:26
std::size_t log2(std::size_t x)
Compute the base-2 logarithm of a number.
Definition integer_math.hpp:58
std::vector< T, vecmem::polymorphic_allocator< T > > vector
Alias type for vectors with our polymorphic allocator.
Definition vector.hpp:35