Home | History | Annotate | Download | only in Antlr3.Runtime

Lines Matching refs:Bit

201     /// better to be 32-bit clean and be consistent with LA.
448 /// <param name="bit">element that must fit in set
450 procedure GrowToInclude(const Bit: Integer);
999 /// There are at most 32767 states (16-bit signed short). Could get away with byte
1736 class function WordNumber(const Bit: Integer): Integer; static;
1747 procedure GrowToInclude(const Bit: Integer); virtual;
3542 procedure TBitSet.GrowToInclude(const Bit: Integer);
3546 NewSize := Max(Length(FBits) shl 1,NumWordsToHold(Bit));
3609 I, Bit: Integer;
3618 for Bit := BITS - 1 downto 0 do
3620 if ((W and (UInt64(1) shl Bit)) <> 0) then
3683 class function TBitSet.WordNumber(const Bit: Integer): Integer;
3685 Result := Bit shr LOG_BITS; // Bit / BITS