Home
last modified time | relevance | path

Searched refs:wtable (Results 1 – 4 of 4) sorted by relevance

/external/rust/crates/unicode-width/scripts/
Dunicode.py242 def remove_from_wtable(wtable, val): argument
244 while wtable:
245 if wtable[0][1] < val:
246 wtable_out.append(wtable.pop(0))
247 elif wtable[0][0] > val:
250 (wt_lo, wt_hi, width, width_cjk) = wtable.pop(0)
260 if wtable:
261 wtable_out.extend(wtable)
266 def optimize_width_table(wtable): argument
268 w_this = wtable.pop(0)
[all …]
/external/python/cpython3/Modules/_decimal/libmpdec/
Ddifradix2.c77 mpd_uint_t *wtable = tparams->wtable; in fnt_dif2() local
98 w0 = wtable[j]; in fnt_dif2()
99 w1 = wtable[j+1]; in fnt_dif2()
146 w = wtable[j*wstep]; in fnt_dif2()
Dnumbertheory.h46 mpd_uint_t wtable[]; member
Dnumbertheory.c108 tparams->wtable[i] = w; in _mpd_init_fnt_params()