4 references to ExpandPrime
System.Private.CoreLib (4)
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\Dictionary.cs (1)
1245private void Resize() => Resize(HashHelpers.ExpandPrime(_count), false);
src\libraries\System.Private.CoreLib\src\System\Collections\Generic\HashSet.cs (2)
159int threshold = HashHelpers.ExpandPrime(source.Count + 1); 1284private void Resize() => Resize(HashHelpers.ExpandPrime(_count), forceNewHashCodes: false);
src\libraries\System.Private.CoreLib\src\System\Collections\Hashtable.cs (1)
694int rawsize = HashHelpers.ExpandPrime(_buckets.Length);