Lines Matching refs:wp
26 and store the USIZE least significant digits of the result at WP.
31 2. If the result is to be written over the input, WP must be >= UP.
36 mpn_lshift (register mp_ptr wp,
40 mpn_lshift (wp, up, usize, cnt)
41 register mp_ptr wp;
61 if (wp != up)
66 wp[i] = up[i];
72 wp += 1;
81 wp[i] = (high_limb << sh_1) | (low_limb >> sh_2);
84 wp[i] = high_limb << sh_1;