Home | History | Annotate | Download | only in Objects

Lines Matching defs:msd

501         digit msd = v->ob_digit[ndigits - 1];

510 msd >>= 1;
511 } while (msd);
673 It's crucial that every Python digit except for the MSD contribute
4134 digit msd;
4143 msd = v->ob_digit[ndigits-1];
4144 while (msd >= 32) {
4146 msd >>= 6;
4148 msd_bits += (long)(BitLengthTable[msd]);