ff_dot_product 72 libavcodec/celp_math.h int64_t ff_dot_product(const int16_t *a, const int16_t *b, int length); ff_dot_product 56 libavcodec/g723_1.c int sum = ff_dot_product(a, b, length); ff_dot_product 108 libavcodec/g723_1.c sum = ff_dot_product(residual + i, cb_ptr, PITCH_ORDER); ff_dot_product 109 libavcodec/g723_1enc.c temp = ff_dot_product(vector, vector, LPC_FRAME); ff_dot_product 124 libavcodec/g723_1enc.c temp = ff_dot_product(vector, vector + i, LPC_FRAME - i); ff_dot_product 435 libavcodec/g723_1enc.c orig_eng = ff_dot_product(buf + offset, buf + offset, HALF_FRAME_LEN); ff_dot_product 443 libavcodec/g723_1enc.c ccr = ff_dot_product(buf + start, buf + offset, HALF_FRAME_LEN); ff_dot_product 504 libavcodec/g723_1enc.c energy[i << 1] = ff_dot_product(buf - j, buf - j, SUBFRAME_LEN); ff_dot_product 506 libavcodec/g723_1enc.c energy[(i << 1) + 1] = ff_dot_product(buf, buf - j, SUBFRAME_LEN); ff_dot_product 510 libavcodec/g723_1enc.c energy[14] = ff_dot_product(buf, buf, SUBFRAME_LEN); ff_dot_product 689 libavcodec/g723_1enc.c temp = ff_dot_product(buf, flt_buf[j], SUBFRAME_LEN); ff_dot_product 701 libavcodec/g723_1enc.c temp = ff_dot_product(flt_buf[j], flt_buf[k], SUBFRAME_LEN); ff_dot_product 40 libavcodec/tests/celp_math.c int64_t d = ff_dot_product(i1, i2, FF_ARRAY_ELEMS(i1));