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