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 is1728 /// same as <![CDATA[(I and (nbits-1))]]>. Since mod is slow, we use a precomputed1729 /// mod mask to do the mod instead.