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));
9 references to _bitArray
Microsoft.CodeAnalysis.Workspaces (9)
Shared\Utilities\BloomFilter.cs (8)
333_bitArray[GetBitArrayIndexFromHash(hash)] = true; 339hash %= _bitArray.Length; 348_bitArray[GetBitArrayIndexFromHash(hash)] = true; 364if (!_bitArray[GetBitArrayIndexFromHash(hash)]) 386if (!_bitArray[GetBitArrayIndexFromHash(hash)]) 400if (!_bitArray[GetBitArrayIndexFromHash(hash)]) 411return IsEquivalent(_bitArray, filter._bitArray)
Shared\Utilities\BloomFilter_Serialization.cs (1)
22WriteBitArray(writer, _bitArray);