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

Lines Matching refs:mod

1726       ///<summary> We will often need to do a mod operator (i mod nbits).
1727 /// Its turns out that, for powers of two, this mod operation is
1728 /// same as <![CDATA[(I and (nbits-1))]]>. Since mod is slow, we use a precomputed
1729 /// mod mask to do the mod instead.