ff_g723_1_dot_product  180 libavcodec/g723_1.h int ff_g723_1_dot_product(const int16_t *a, const int16_t *b, int length);
ff_g723_1_dot_product  289 libavcodec/g723_1dec.c         ccr = ff_g723_1_dot_product(buf, buf + dir * i, length);
ff_g723_1_dot_product  388 libavcodec/g723_1dec.c     energy[0] = ff_g723_1_dot_product(buf, buf, SUBFRAME_LEN);
ff_g723_1_dot_product  392 libavcodec/g723_1dec.c         energy[2] = ff_g723_1_dot_product(buf + fwd_lag, buf + fwd_lag,
ff_g723_1_dot_product  397 libavcodec/g723_1dec.c         energy[4] = ff_g723_1_dot_product(buf - back_lag, buf - back_lag,
ff_g723_1_dot_product  460 libavcodec/g723_1dec.c     tgt_eng  = ff_g723_1_dot_product(buf, buf, SUBFRAME_LEN * 2);
ff_g723_1_dot_product  467 libavcodec/g723_1dec.c     best_eng = ff_g723_1_dot_product(buf - index, buf - index,
ff_g723_1_dot_product  620 libavcodec/g723_1dec.c         auto_corr[0] = ff_g723_1_dot_product(dst, dst + 1, SUBFRAME_LEN - 1);
ff_g723_1_dot_product  621 libavcodec/g723_1dec.c         auto_corr[1] = ff_g723_1_dot_product(dst, dst,     SUBFRAME_LEN);
ff_g723_1_dot_product  304 libavcodec/g723_1enc.c         error  = ff_g723_1_dot_product(lsp + (offset), temp, size) << 1;      \
ff_g723_1_dot_product  305 libavcodec/g723_1enc.c         error -= ff_g723_1_dot_product(lsp_band##num[i], temp, size);         \
ff_g723_1_dot_product  695 libavcodec/g723_1enc.c             ccr_buf[count++] = ff_g723_1_dot_product(flt_buf[j], flt_buf[j],
ff_g723_1_dot_product  803 libavcodec/g723_1enc.c     temp = ff_g723_1_dot_product(temp_corr, temp_corr, SUBFRAME_LEN);
ff_g723_1_dot_product  809 libavcodec/g723_1enc.c         temp = ff_g723_1_dot_product(temp_corr + i, temp_corr,
ff_g723_1_dot_product  817 libavcodec/g723_1enc.c         temp = ff_g723_1_dot_product(buf + i, impulse_r, SUBFRAME_LEN - i);