2 writes to _bitArray
Microsoft.CodeAnalysis.Workspaces (2)
Shared\Utilities\BloomFilter.cs (2)
48_bitArray = new BitArray(length: sizeInEvenBytes); 71_bitArray = bitArray ?? throw new ArgumentNullException(nameof(bitArray));
8 references to _bitArray
Microsoft.CodeAnalysis.Workspaces (8)
Shared\Utilities\BloomFilter.cs (7)
324_bitArray[GetBitArrayIndexFromHash(hash)] = true; 330hash %= _bitArray.Length; 339_bitArray[GetBitArrayIndexFromHash(hash)] = true; 355if (!_bitArray[GetBitArrayIndexFromHash(hash)]) 369if (!_bitArray[GetBitArrayIndexFromHash(hash)]) 380return IsEquivalent(_bitArray, filter._bitArray)
Shared\Utilities\BloomFilter_Serialization.cs (1)
22WriteBitArray(writer, _bitArray);