Searched refs:wstep (Results 1 – 3 of 3) sorted by relevance
/external/python/cpython3/Modules/_decimal/libmpdec/ |
D | sixstep.c | 59 mpd_uint_t *x, w0, w1, wstep; in six_step_fnt() local 97 wstep = MULMOD(w1, w1); /* r**(2*i) */ in six_step_fnt() 102 MULMOD2C(&w0, &w1, wstep); /* r**(i*(k+2)) = r**(i*k) * r**(2*i) */ in six_step_fnt() 144 mpd_uint_t *x, w0, w1, wstep; in inv_six_step_fnt() local 179 wstep = MULMOD(w1, w1); in inv_six_step_fnt() 184 MULMOD2C(&w0, &w1, wstep); in inv_six_step_fnt()
|
D | fourstep.c | 144 mpd_uint_t kernel, w0, w1, wstep; in four_step_fnt() local 171 wstep = MULMOD(w1, w1); /* r**(2*i) */ in four_step_fnt() 176 MULMOD2C(&w0, &w1, wstep); /* r**(i*(k+2)) = r**(i*k) * r**(2*i) */ in four_step_fnt() 206 mpd_uint_t kernel, w0, w1, wstep; in inv_four_step_fnt() local 240 wstep = MULMOD(w1, w1); in inv_four_step_fnt() 245 MULMOD2C(&w0, &w1, wstep); in inv_four_step_fnt()
|
D | difradix2.c | 84 mpd_uint_t w, w0, w1, wstep; in fnt_dif2() local 120 wstep = 2; in fnt_dif2() 121 for (m = n/2; m >= 2; m>>=1, wstep<<=1) { in fnt_dif2() 146 w = wtable[j*wstep]; in fnt_dif2()
|