Searched refs:maxshift (Results 1 – 7 of 7) sorted by relevance
/external/libopus/celt/ |
D | mdct.c | 63 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()
|
D | mdct.h | 51 int maxshift; member 61 int clt_mdct_init(mdct_lookup *l,int N, int maxshift, int arch);
|
/external/libopus/celt/dump_modes/ |
D | dump_modes_arm_ne10.c | 81 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()
|
D | dump_modes.c | 161 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/ |
D | makeunicodedata.py | 1095 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/ |
D | makeunicodedata.py | 1320 maxshift = 0 # the most we can shift n and still have something left 1324 maxshift += 1 1328 for shift in range(maxshift + 1):
|
/external/python/cpython3/Modules/_decimal/libmpdec/ |
D | mpdecimal.c | 7038 mpd_ssize_t shift, maxexp, maxshift; in mpd_qreduce() local 7064 maxshift = maxexp - result->exp; in mpd_qreduce() 7065 shift = (shift > maxshift) ? maxshift : shift; in mpd_qreduce()
|