8 references to BitsPerWord
Microsoft.CodeAnalysis (6)
Collections\BitVector.cs (6)
125for (int bit = 0; bit < BitsPerWord; bit++) 140for (int b = 0; b < BitsPerWord; b++) 187int numTrailingBits = capacity & ((BitsPerWord) - 1); 190Debug.Assert(numTrailingBits <= BitsPerWord); 363int b = index & (BitsPerWord - 1); 390int b = index & (BitsPerWord - 1);
Microsoft.CodeAnalysis.UnitTests (2)
Collections\BitArrayTests.cs (2)
27int n = BitVector.BitsPerWord * a + b; 205for (var i = 0; i < BitVector.BitsPerWord; i++)