Home | History | Annotate | Download | only in lib

Lines Matching refs:msd

554         mp_limb_t msd = b_ptr[b_len - 1]; /* = b[n-1], > 0 */
555 /* Determine s = GMP_LIMB_BITS - integer_length (msd).
558 s = __builtin_clz (msd);
572 m.value = msd;
583 if (msd >= 0x10000)
585 msd = msd >> 16;
588 if (msd >= 0x100)
590 msd = msd >> 8;
593 if (msd >= 0x10)
595 msd = msd >> 4;
598 if (msd >= 0x4)
600 msd = msd >> 2;
603 if (msd >= 0x2)
605 msd = msd >> 1;