17 references to kcbitUint
System.Numerics (17)
System\Numerics\BigInteger.cs (17)
126get { AssertValid(); return (_sign >> (kcbitUint - 1)) - (-_sign >> (kcbitUint - 1)); } 450_bits[1] = (uint)(x >> kcbitUint); 467_bits[1] = (uint)(value >> kcbitUint); 915int bitlen = (uintLength - 1) * kcbitUint + topbits; 1395int digitShift = shift / kcbitUint; 1396int smallShift = shift - (digitShift * kcbitUint); 1409int carryShift = kcbitUint - smallShift; 1427int digitShift = shift / kcbitUint; 1428int smallShift = shift - (digitShift * kcbitUint); 1434if (shift >= (kcbitUint * xl)) { 1452int carryShift = kcbitUint - smallShift; 1773int cu = (exp - 1) / kcbitUint + 1; 1774int cbit = cu * kcbitUint - exp; 1775Contract.Assert(0 <= cbit && cbit < kcbitUint); 1780_bits[cu + 1] = (uint)(man >> (cbit + kcbitUint)); 1783_bits[cu - 1] = (uint)man << (kcbitUint - cbit);