HDK
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
pxr_tsl::rh::power_of_two_growth_policy< GrowthFactor > Class Template Reference

#include <robin_growth_policy.h>

Public Member Functions

 power_of_two_growth_policy (std::size_t &min_bucket_count_in_out)
 
std::size_t bucket_for_hash (std::size_t hash) const noexcept
 
std::size_t next_bucket_count () const
 
std::size_t max_bucket_count () const
 
void clear () noexcept
 

Protected Attributes

std::size_t m_mask
 

Detailed Description

template<std::size_t GrowthFactor>
class pxr_tsl::rh::power_of_two_growth_policy< GrowthFactor >

Grow the hash table by a factor of GrowthFactor keeping the bucket count to a power of two. It allows the table to use a mask operation instead of a modulo operation to map a hash to a bucket.

GrowthFactor must be a power of two >= 2.

Definition at line 90 of file robin_growth_policy.h.

Constructor & Destructor Documentation

template<std::size_t GrowthFactor>
pxr_tsl::rh::power_of_two_growth_policy< GrowthFactor >::power_of_two_growth_policy ( std::size_t &  min_bucket_count_in_out)
inlineexplicit

Called on the hash table creation and on rehash. The number of buckets for the table is passed in parameter. This number is a minimum, the policy may update this value with a higher value if needed (but not lower).

If 0 is given, min_bucket_count_in_out must still be 0 after the policy creation and bucket_for_hash must always return 0 in this case.

Definition at line 100 of file robin_growth_policy.h.

Member Function Documentation

template<std::size_t GrowthFactor>
std::size_t pxr_tsl::rh::power_of_two_growth_policy< GrowthFactor >::bucket_for_hash ( std::size_t  hash) const
inlinenoexcept

Return the bucket [0, bucket_count()) to which the hash belongs. If bucket_count() is 0, it must always return 0.

Definition at line 119 of file robin_growth_policy.h.

template<std::size_t GrowthFactor>
void pxr_tsl::rh::power_of_two_growth_policy< GrowthFactor >::clear ( void  )
inlinenoexcept

Reset the growth policy as if it was created with a bucket count of 0. After a clear, the policy must always return 0 when bucket_for_hash is called.

Definition at line 148 of file robin_growth_policy.h.

template<std::size_t GrowthFactor>
std::size_t pxr_tsl::rh::power_of_two_growth_policy< GrowthFactor >::max_bucket_count ( ) const
inline

Return the maximum number of buckets supported by the policy.

Definition at line 138 of file robin_growth_policy.h.

template<std::size_t GrowthFactor>
std::size_t pxr_tsl::rh::power_of_two_growth_policy< GrowthFactor >::next_bucket_count ( ) const
inline

Return the number of buckets that should be used on next growth.

Definition at line 126 of file robin_growth_policy.h.

Member Data Documentation

template<std::size_t GrowthFactor>
std::size_t pxr_tsl::rh::power_of_two_growth_policy< GrowthFactor >::m_mask
protected

Definition at line 174 of file robin_growth_policy.h.


The documentation for this class was generated from the following file: