2 writes to _currentSize
System.Runtime.Serialization.Formatters (2)
System\Runtime\Serialization\ObjectIDGenerator.cs (2)
23_currentSize = 3; // HashHelpers.Primes[0] 125_currentSize = newSize;
8 references to _currentSize
System.Runtime.Serialization.Formatters (8)
System\Runtime\Serialization\ObjectIDGenerator.cs (8)
24_ids = new long[_currentSize * NumBins]; 25_objs = new object[_currentSize * NumBins]; 37int hashIncrement = (1 + ((hashcode & 0x7FFFFFFF) % (_currentSize - 2))); 40int pos = ((hashcode & 0x7FFFFFFF) % _currentSize) * NumBins; 81if (_currentCount > (_currentSize * NumBins) / 2) 118int currSize = _currentSize; 127long[] newIds = new long[_currentSize * NumBins]; 128object[] newObjs = new object[_currentSize * NumBins];