45 references to kcbitUint
System.Runtime.Numerics (45)
System\Numerics\BigInteger.cs (45)
37internal static int MaxLength => Array.MaxLength / kcbitUint; 115_bits[1] = (uint)(x >> kcbitUint); 141_bits[1] = (uint)(value >> kcbitUint); 207int cu = (exp - 1) / kcbitUint + 1; 208int cbit = cu * kcbitUint - exp; 209Debug.Assert(0 <= cbit && cbit < kcbitUint); 214_bits[cu + 1] = (uint)(man >> (cbit + kcbitUint)); 217_bits[cu - 1] = unchecked((uint)man) << (kcbitUint - cbit); 666get { AssertValid(); return (_sign >> (kcbitUint - 1)) - (-_sign >> (kcbitUint - 1)); } 1635ulong highBits = ((ulong)_bits[^1] << kcbitUint) + _bits[^2]; 1637double exponentLow = lowBitsCount32 * kcbitUint * log10Of2; 1870const int InfinityLength = 1024 / kcbitUint; 2236bits[0] = (uint)(x >> (kcbitUint * 0)); 2241bits[0] = (uint)(x >> (kcbitUint * 0)); 2242bits[1] = (uint)(x >> (kcbitUint * 1)); 2247bits[0] = (uint)(x >> (kcbitUint * 0)); 2248bits[1] = (uint)(x >> (kcbitUint * 1)); 2249bits[2] = (uint)(x >> (kcbitUint * 2)); 2254bits[0] = (uint)(x >> (kcbitUint * 0)); 2255bits[1] = (uint)(x >> (kcbitUint * 1)); 2256bits[2] = (uint)(x >> (kcbitUint * 2)); 2257bits[3] = (uint)(x >> (kcbitUint * 3)); 2320bits[0] = (uint)(value >> (kcbitUint * 0)); 2325bits[0] = (uint)(value >> (kcbitUint * 0)); 2326bits[1] = (uint)(value >> (kcbitUint * 1)); 2331bits[0] = (uint)(value >> (kcbitUint * 0)); 2332bits[1] = (uint)(value >> (kcbitUint * 1)); 2333bits[2] = (uint)(value >> (kcbitUint * 2)); 2338bits[0] = (uint)(value >> (kcbitUint * 0)); 2339bits[1] = (uint)(value >> (kcbitUint * 1)); 2340bits[2] = (uint)(value >> (kcbitUint * 2)); 2341bits[3] = (uint)(value >> (kcbitUint * 3)); 2537(int digitShift, int smallShift) = Math.DivRem(shift, kcbitUint); 2563int carryShift = kcbitUint - smallShift; 2596(int digitShift, int smallShift) = Math.DivRem(shift, kcbitUint); 2611if (shift >= ((long)kcbitUint * xd.Length)) 2644int carryShift = kcbitUint - smallShift; 3308(int digitShift, int smallShift) = Math.DivRem(rotateAmount, kcbitUint); 3362int carryShift = kcbitUint - smallShift; 3463(int digitShift, int smallShift) = Math.DivRem(rotateAmount, kcbitUint); 3517int carryShift = kcbitUint - smallShift; 5278(int digitShift, int smallShift) = Math.DivRem(shiftAmount, kcbitUint); 5311if (shiftAmount >= ((long)kcbitUint * xd.Length)) 5336int carryShift = kcbitUint - smallShift;