Home
last modified time | relevance | path

Searched refs:maxshift (Results 1 – 7 of 7) sorted by relevance

/external/libopus/celt/
Dmdct.c63 int clt_mdct_init(mdct_lookup *l,int N, int maxshift, int arch) in clt_mdct_init() argument
70 l->maxshift = maxshift; in clt_mdct_init()
71 for (i=0;i<=maxshift;i++) in clt_mdct_init()
82 … l->trig = trig = (kiss_twiddle_scalar*)opus_alloc((N-(N2>>maxshift))*sizeof(kiss_twiddle_scalar)); in clt_mdct_init()
85 for (shift=0;shift<=maxshift;shift++) in clt_mdct_init()
110 for (i=0;i<=l->maxshift;i++) in clt_mdct_clear()
Dmdct.h51 int maxshift; member
61 int clt_mdct_init(mdct_lookup *l,int N, int maxshift, int arch);
/external/libopus/celt/dump_modes/
Ddump_modes_arm_ne10.c81 for(k=0;k<=mode->mdct.maxshift;k++) { in dump_mode_arch()
95 for(k=0;k<=mode->mdct.maxshift;k++) { in dump_mode_arch()
115 for(k=0;k<=mode->mdct.maxshift;k++) { in dump_mode_arch()
Ddump_modes.c161 for (k=0;k<=mode->mdct.maxshift;k++) in dump_modes()
176 for (k=0;k<=mode->mdct.maxshift;k++) in dump_modes()
211 mdct_twiddles_size = mode->mdct.n-(mode->mdct.n/2>>mode->mdct.maxshift); in dump_modes()
251 fprintf(file, "{%d, %d, {", mode->mdct.n, mode->mdct.maxshift); in dump_modes()
252 for (k=0;k<=mode->mdct.maxshift;k++) in dump_modes()
/external/python/cpython2/Tools/unicode/
Dmakeunicodedata.py1095 maxshift = 0 # the most we can shift n and still have something left
1099 maxshift += 1
1103 for shift in range(maxshift + 1):
/external/python/cpython3/Tools/unicode/
Dmakeunicodedata.py1305 maxshift = 0 # the most we can shift n and still have something left
1309 maxshift += 1
1313 for shift in range(maxshift + 1):
/external/python/cpython3/Modules/_decimal/libmpdec/
Dmpdecimal.c6874 mpd_ssize_t shift, maxexp, maxshift; in mpd_qreduce() local
6900 maxshift = maxexp - result->exp; in mpd_qreduce()
6901 shift = (shift > maxshift) ? maxshift : shift; in mpd_qreduce()