Home | History | Annotate | Download | only in pre_gen

Lines Matching defs:shift

318    * shift the words downward [all those least
1898 /* shift the current digit, add in carry and store */
1941 /* shift right by a certain bit count (store quotient in c, optional remainder in d) */
1949 /* if the shift count is <= 0 then we do no work */
1976 /* shift by as many digits in the bit count */
1981 /* shift any bit count < DIGIT_BIT */
1984 register mp_digit *tmpc, mask, shift;
1989 /* shift for lsb */
1990 shift = DIGIT_BIT - D;
2001 /* shift the current word and mix in the carry bits from the previous word */
2002 *tmpc = (*tmpc >> D) | (r << shift);
2486 /* shift to next bit */
3074 /* shift up and add */
4173 /* now shift the digits */
4183 * since we also need to shift the digits
4233 /* shift by B */
4325 /* now shift the digits */
4360 /* shift by B */
4472 /* shift left a certain amount of digits */
4492 /* increment the used by the shift amount then copy upwards */
4688 * The method is slightly modified to shift B unconditionally upto just under
4828 * which means we can shift x to the
5036 /* now shift up this digit, add in the carry [from the previous] */
5089 /* shift left by a certain bit count */
5108 /* shift by as many digits in the bit count */
5115 /* shift any bit count < DIGIT_BIT */
5118 register mp_digit *tmpc, shift, mask, r, rr;
5124 /* shift for msbs */
5125 shift = DIGIT_BIT - d;
5134 rr = (*tmpc >> shift) & mask;
5136 /* shift the current word and OR in the carry */
7050 /* shift right a certain amount of digits */
7069 /* shift the digits down */
7168 /* shift the number up four bits */
7176 /* shift the source up to the next four bits */
8066 /* at this point shift W[n] by B*n */
8298 /* at this point shift W[n] by B*n */
9435 * MSB. As a result a single shift is enough to get the carry