Home | History | Annotate | Download | only in gold

Lines Matching full:buckets

853 // Given a vector of hash codes, compute the number of hash buckets to
862 // Array used to determine the number of hash table buckets to use
865 // buckets, fewer than 37 we use 17 buckets, and so forth. We never
866 // use more than 262147 buckets. This is straight from the old GNU
868 static const unsigned int buckets[] =
873 const int buckets_count = sizeof buckets / sizeof buckets[0];
881 if (symcount < buckets[i] * full_fraction)
883 ret = buckets[i];