Home | History | Annotate | Download | only in libspeex

Lines Matching refs:end

157 void open_loop_nbest_pitch(spx_word16_t *sw, int start, int end, int len, int *pitch, spx_word16_t *gain, int N, char *stack)
168 ALLOC(corr, end-start+1, spx_word32_t);
169 ALLOC(energy, end-start+2, spx_word32_t);
203 "a" (end-start)
210 pitch_xcorr(sw, sw-end, corr, len, end-start+1, stack);
216 ALLOC(corr16, end-start+1, spx_word16_t);
217 ALLOC(ener16, end-start+1, spx_word16_t);
219 normalize16(corr, corr16, 180, end-start+1);
220 normalize16(energy, ener16, 180, end-start+1);
247 : "a" (corr16), "a" (ener16), "a" (end+1-start), "d" (start)
256 for (i=start;i<=end;i++)