8 references to BitsPerWord
Microsoft.CodeAnalysis.CodeStyle (8)
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);
ObjectReader.cs (2)
514Debug.Assert(BitVector.BitsPerWord == 64); 523for (var p = 0; p < BitVector.BitsPerWord; p++)