Home
last modified time | relevance | path

Searched refs:wstep (Results 1 – 3 of 3) sorted by relevance

/external/python/cpython3/Modules/_decimal/libmpdec/
Dsixstep.c57 mpd_uint_t *x, w0, w1, wstep; in six_step_fnt() local
95 wstep = MULMOD(w1, w1); /* r**(2*i) */ in six_step_fnt()
100 MULMOD2C(&w0, &w1, wstep); /* r**(i*(k+2)) = r**(i*k) * r**(2*i) */ in six_step_fnt()
142 mpd_uint_t *x, w0, w1, wstep; in inv_six_step_fnt() local
177 wstep = MULMOD(w1, w1); in inv_six_step_fnt()
182 MULMOD2C(&w0, &w1, wstep); in inv_six_step_fnt()
Dfourstep.c142 mpd_uint_t kernel, w0, w1, wstep; in four_step_fnt() local
169 wstep = MULMOD(w1, w1); /* r**(2*i) */ in four_step_fnt()
174 MULMOD2C(&w0, &w1, wstep); /* r**(i*(k+2)) = r**(i*k) * r**(2*i) */ in four_step_fnt()
203 mpd_uint_t kernel, w0, w1, wstep; in inv_four_step_fnt() local
236 wstep = MULMOD(w1, w1); in inv_four_step_fnt()
241 MULMOD2C(&w0, &w1, wstep); in inv_four_step_fnt()
Ddifradix2.c82 mpd_uint_t w, w0, w1, wstep; in fnt_dif2() local
118 wstep = 2; in fnt_dif2()
119 for (m = n/2; m >= 2; m>>=1, wstep<<=1) { in fnt_dif2()
144 w = wtable[j*wstep]; in fnt_dif2()