Lines Matching refs:bit
154 * <param name="bit">element that must fit in set</param>
156 public void GrowToInclude( int bit )
158 int newSize = Math.Max( _bits.Length << 1, NumWordsToHold( bit ) );
207 for ( int bit = BITS - 1; bit >= 0; bit-- )
209 if ( ( word & ( 1UL << bit ) ) != 0 )
340 private static int WordNumber( int bit )
342 return bit >> LOG_BITS; // bit / BITS