Home | History | Annotate | Download | only in signal_processing

Lines Matching refs:sum

26     WebRtc_Word32 sum;
45 // In order to avoid overflow when computing the sum we should scale the samples so that
53 int nbits = WebRtcSpl_GetSizeInBits(in_vector_length); // # of bits in the sum loop
72 sum = 0;
78 sum += WEBRTC_SPL_MUL_16_16_RSFT(*xptr1++, *xptr2++, scaling);
87 sum += WEBRTC_SPL_MUL_16_16(*xptr1, *xptr2);
90 sum += WEBRTC_SPL_MUL_16_16(*xptr1, *xptr2);
93 sum += WEBRTC_SPL_MUL_16_16(*xptr1, *xptr2);
96 sum += WEBRTC_SPL_MUL_16_16(*xptr1, *xptr2);
103 sum += WEBRTC_SPL_MUL_16_16(*xptr1, *xptr2);
112 sum += WEBRTC_SPL_MUL_16_16_RSFT(*xptr1, *xptr2, scaling);
115 sum += WEBRTC_SPL_MUL_16_16_RSFT(*xptr1, *xptr2, scaling);
118 sum += WEBRTC_SPL_MUL_16_16_RSFT(*xptr1, *xptr2, scaling);
121 sum += WEBRTC_SPL_MUL_16_16_RSFT(*xptr1, *xptr2, scaling);
128 sum += WEBRTC_SPL_MUL_16_16_RSFT(*xptr1, *xptr2, scaling);
135 *resultptr++ = sum;