Lines Matching defs:save
2564 /* Save sign for later, and take absolute value */
2971 mp_digit save, next, mask, *dp;
2992 save = 0;
2995 dp[ix] = (dp[ix] << d) | save;
2996 save = next;
3002 if(save) {
3003 dp[used] = save;
3024 mp_digit save, next, mask, *dp = DIGITS(mp);
3031 save = 0;
3034 dp[ix] = (dp[ix] >> d) | (save << (DIGIT_BIT - d));
3035 save = next;
3507 step is a bit more complicated, but we save a fair number of
3581 /* Save carry information for the next iteration of the loop.