14 references to BitsPerInt32
System.Collections (14)
System\Collections\BitArray.cs (14)
202if (values.Length > int.MaxValue / BitsPerInt32) 204throw new ArgumentException(SR.Format(SR.Argument_ArrayTooLarge, BitsPerInt32), nameof(values)); 209m_length = values.Length * BitsPerInt32; 629uint mask = uint.MaxValue >> (BitsPerInt32 - extraBits); 643int left = m_array[++fromIndex] << (BitsPerInt32 - shiftCount); 646uint mask = uint.MaxValue >> (BitsPerInt32 - extraBits); 694uint right = (uint)m_array[--fromindex] >> (BitsPerInt32 - shiftCount); 831if (m_length < BitsPerInt32) 853ulong bits = (ulong)(uint)m_array[i / (uint)BitsPerInt32] + ((ulong)m_array[(i / (uint)BitsPerInt32) + 1] << BitsPerInt32); 876int bits = m_array[i / (uint)BitsPerInt32]; 901int bits = m_array[i / (uint)BitsPerInt32]; 927int bits = m_array[i / (uint)BitsPerInt32];