Use bit_ceil and bit_floor in mix64_policy

This commit is contained in:
Peter Dimov
2022-01-18 20:40:23 +02:00
parent 5c3576c7c6
commit 7717ff01a1

View File

@ -16,6 +16,7 @@
#include <boost/core/allocator_traits.hpp> #include <boost/core/allocator_traits.hpp>
#include <boost/core/no_exceptions_support.hpp> #include <boost/core/no_exceptions_support.hpp>
#include <boost/core/pointer_traits.hpp> #include <boost/core/pointer_traits.hpp>
#include <boost/core/bit.hpp>
#include <boost/detail/select_type.hpp> #include <boost/detail/select_type.hpp>
#include <boost/limits.hpp> #include <boost/limits.hpp>
#include <boost/move/move.hpp> #include <boost/move/move.hpp>
@ -2024,25 +2025,12 @@ namespace boost {
{ {
if (min <= 4) if (min <= 4)
return 4; return 4;
--min; return boost::core::bit_ceil(min);
min |= min >> 1;
min |= min >> 2;
min |= min >> 4;
min |= min >> 8;
min |= min >> 16;
min |= min >> 32;
return min + 1;
} }
static inline SizeT prev_bucket_count(SizeT max) static inline SizeT prev_bucket_count(SizeT max)
{ {
max |= max >> 1; return boost::core::bit_floor(max);
max |= max >> 2;
max |= max >> 4;
max |= max >> 8;
max |= max >> 16;
max |= max >> 32;
return (max >> 1) + 1;
} }
}; };