Home
last modified time | relevance | path

Searched refs:istep (Results 1 - 6 of 6) sorted by relevance

/third_party/lame/libmp3lame/
H A Dtakehiro.c114 quantize_lines_xrpow_01(unsigned int l, FLOAT istep, const FLOAT * xr, int *ix) in quantize_lines_xrpow_01() argument
116 const FLOAT compareval0 = (1.0f - 0.4054f) / istep; in quantize_lines_xrpow_01()
145 quantize_lines_xrpow(unsigned int l, FLOAT istep, const FLOAT * xp, int *pi) in quantize_lines_xrpow() argument
158 double x0 = istep * xp[0]; in quantize_lines_xrpow()
159 double x1 = istep * xp[1]; in quantize_lines_xrpow()
160 double x2 = istep * xp[2]; in quantize_lines_xrpow()
161 double x3 = istep * xp[3]; in quantize_lines_xrpow()
185 double x0 = istep * xp[0]; in quantize_lines_xrpow()
186 double x1 = istep * xp[1]; in quantize_lines_xrpow()
223 quantize_lines_xrpow(unsigned int l, FLOAT istep, cons argument
282 quantize_xrpow(const FLOAT * xp, int *pi, FLOAT istep, gr_info const *const cod_info, calc_noise_data const *prev_noise) quantize_xrpow() argument
[all...]
/third_party/python/Lib/
H A Drandom.py330 istep = _index(step)
332 istep = int(step)
333 if istep != step:
342 if istep == 1:
348 if istep > 0:
349 n = (width + istep - 1) // istep
350 elif istep < 0:
351 n = (width + istep + 1) // istep
[all...]
/third_party/alsa-lib/include/
H A Dcontrol_external.h177 long *imin, long *imax, long *istep);
182 int64_t *imin, int64_t *imax, int64_t *istep);
H A Dcontrol.h620 int snd_ctl_elem_add_integer(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long imin, long imax, long istep);
621 int snd_ctl_elem_add_integer64(snd_ctl_t *ctl, const snd_ctl_elem_id_t *id, unsigned int count, long long imin, long long imax, long long istep);
/third_party/python/Objects/
H A Drangeobject.c625 Py_ssize_t istep; in range_repr() local
629 istep = PyNumber_AsSsize_t(r->step, NULL); in range_repr()
630 if (istep == -1 && PyErr_Occurred()) { in range_repr()
635 if (istep == 1) in range_repr()
/third_party/alsa-utils/alsactl/
H A Dstate.c832 long *imin, long *imax, long *istep) in get_comment_range()
841 err = sscanf(s, "%li - %li (step %li)", imin, imax, istep); in get_comment_range()
843 istep = 0; in get_comment_range()
902 long imin, imax, istep; in add_user_control() local
909 imin = imax = istep = 0; in add_user_control()
928 err = get_comment_range(n, ctype, &imin, &imax, &istep); in add_user_control()
966 if (imin > imax || istep > imax - imin) { in add_user_control()
970 err = snd_ctl_elem_add_integer(handle, id, count, imin, imax, istep); in add_user_control()
831 get_comment_range(snd_config_t *n, int ctype, long *imin, long *imax, long *istep) get_comment_range() argument

Completed in 7 milliseconds