Searched refs:xp (Results 1 – 2 of 2) sorted by relevance
/math/ |
A D | atest-exp.c | 61 mp1 xp; in exp_mpn() local 66 memset (xp, 0, sizeof (mp1)); in exp_mpn() 68 xp[FRAC / mpbpl] = (mp_limb_t)1 << FRAC % mpbpl; in exp_mpn() 78 mpn_mul_n (tmp, xp, x, SZ); in exp_mpn() 81 mpn_divmod_1 (xp, tmp + FRAC / mpbpl, SZ, n); in exp_mpn() 82 chk = mpn_add_n (ex, ex, xp, SZ); in exp_mpn() 87 while (n < 10 || mpn_cmp (xp, tol, SZ) >= 0); in exp_mpn()
|
A D | atest-exp2.c | 87 mp1 xp; in exp_mpn() local 92 memset (xp, 0, sizeof (mp1)); in exp_mpn() 94 xp[FRAC / mpbpl] = (mp_limb_t)1 << FRAC % mpbpl; in exp_mpn() 104 mpn_mul_n (tmp, xp, x, SZ); in exp_mpn() 107 mpn_divmod_1 (xp, tmp + FRAC / mpbpl, SZ, n); in exp_mpn() 108 chk = mpn_add_n (ex, ex, xp, SZ); in exp_mpn() 113 while (n < 10 || mpn_cmp (xp, tol, SZ) >= 0); in exp_mpn()
|
Completed in 4 milliseconds