Lines Matching refs:x
37 # define LIMB64(L, H) 0x ## H ## L
39 # define LIMB64(L, H) 0x ## L, 0x ## H
61 print_mpn_fp (const mp_limb_t *x, unsigned int dp, unsigned int base) in print_mpn_fp() argument
67 memcpy (tx, x, sizeof (mp1)); in print_mpn_fp()
70 assert (x[SZ-1] < base); in print_mpn_fp()
71 fputc (hexdig[x[SZ - 1]], stdout); in print_mpn_fp()
84 exp_mpn (mp1 ex, mp1 x) in exp_mpn() argument
104 mpn_mul_n (tmp, xp, x, SZ); in exp_mpn()
118 exp2_mpn (mp1 ex, mp1 x) in exp2_mpn() argument
121 mpn_mul_n (tmp, x, mp_log2, SZ); in exp2_mpn()
144 mp1 ex, x, xt, e2, e3; in do_test() local
164 mpn_mul_1 (x, xt, SZ, i); in do_test()
165 exp2_mpn (ex, x); in do_test()
205 memset (x, 0, sizeof (mp1)); in do_test()
206 x[FRAC / mpbpl] = (mp_limb_t)1 << FRAC % mpbpl; in do_test()
207 exp_mpn (ex, x); in do_test()