Lines Matching refs:amount
33 int exponent_x, exponent_y, digits_x, extra_digits, amount;
155 amount = recip_scale[extra_digits];
158 if (amount >= 64) {
160 CR.w[0] = CX2.w[1] >> (amount - 64);
162 __shr_128 (CR, CX2, amount);
175 if (amount >= 64) {
176 remainder_h = CX2.w[0] | (CX2.w[1] << (128 - amount));
178 remainder_h = CX2.w[0] << (64 - amount);
194 if (amount >= 64) {
195 REM_H.w[1] = (CX2.w[1] << (128 - amount));
198 REM_H.w[1] = CX2.w[0] << (64 - amount);
226 if (amount < 64) {
228 C2N.w[0] = ((UINT64) 1) << amount;
229 REM_H.w[0] = REM_H.w[1] >> (64 - amount);
232 C2N.w[1] = ((UINT64) 1) << (amount - 64);
234 REM_H.w[1] >>= (128 - amount);