Searched defs:right_shifts (Results 1 - 3 of 3) sorted by relevance

/external/webrtc/src/common_audio/signal_processing/
H A Dcross_correlation.c23 WebRtc_Word16 right_shifts,
144 *CrossCorrPtr = (WebRtc_Word32)(macc40 >> right_shifts);
169 (*CrossCorrPtr) += WEBRTC_SPL_MUL_16_16_RSFT((*seq1Ptr), (*seq2Ptr), right_shifts);
177 if (right_shifts == 0)
215 else // right_shifts != 0
222 right_shifts);
226 right_shifts);
230 right_shifts);
234 right_shifts);
238 right_shifts);
20 WebRtcSpl_CrossCorrelation(WebRtc_Word32* cross_correlation, WebRtc_Word16* seq1, WebRtc_Word16* seq2, WebRtc_Word16 dim_seq, WebRtc_Word16 dim_cross_correlation, WebRtc_Word16 right_shifts, WebRtc_Word16 step_seq2) argument
[all...]
H A Dilbc_specific_functions.c29 WebRtc_Word16 right_shifts, WebRtc_Word16 *out,
34 roundVal = 1 << right_shifts;
39 + WEBRTC_SPL_MUL_16_16(vector2[i], scale2) + roundVal) >> right_shifts);
46 WebRtc_Word16 right_shifts)
55 *winptr--, right_shifts);
61 WebRtc_Word16 right_shifts)
70 *winptr++, right_shifts);
76 WebRtc_Word16 right_shifts)
84 (*outptr++) = (WebRtc_Word16)(((*in1ptr++) + (*in2ptr++)) >> right_shifts);
90 WebRtc_Word16 right_shifts, in
27 WebRtcSpl_ScaleAndAddVectorsWithRound(WebRtc_Word16 *vector1, WebRtc_Word16 scale1, WebRtc_Word16 *vector2, WebRtc_Word16 scale2, WebRtc_Word16 right_shifts, WebRtc_Word16 *out, WebRtc_Word16 vector_length) argument
43 WebRtcSpl_ReverseOrderMultArrayElements(WebRtc_Word16 *out, G_CONST WebRtc_Word16 *in, G_CONST WebRtc_Word16 *win, WebRtc_Word16 vector_length, WebRtc_Word16 right_shifts) argument
59 WebRtcSpl_ElementwiseVectorMult(WebRtc_Word16 *out, G_CONST WebRtc_Word16 *in, G_CONST WebRtc_Word16 *win, WebRtc_Word16 vector_length, WebRtc_Word16 right_shifts) argument
74 WebRtcSpl_AddVectorsAndShift(WebRtc_Word16 *out, G_CONST WebRtc_Word16 *in1, G_CONST WebRtc_Word16 *in2, WebRtc_Word16 vector_length, WebRtc_Word16 right_shifts) argument
88 WebRtcSpl_AddAffineVectorToVector(WebRtc_Word16 *out, WebRtc_Word16 *in, WebRtc_Word16 gain, WebRtc_Word32 add_constant, WebRtc_Word16 right_shifts, int vector_length) argument
105 WebRtcSpl_AffineTransformVector(WebRtc_Word16 *out, WebRtc_Word16 *in, WebRtc_Word16 gain, WebRtc_Word32 add_constant, WebRtc_Word16 right_shifts, int vector_length) argument
[all...]
H A Dvector_scaling_operations.c30 WebRtc_Word16 right_shifts)
34 if (right_shifts > 0)
38 (*res++) = ((*in++) >> right_shifts);
44 (*res++) = ((*in++) << (-right_shifts));
52 WebRtc_Word16 right_shifts)
56 if (right_shifts > 0)
60 (*out_vector++) = ((*in_vector++) >> right_shifts);
66 (*out_vector++) = ((*in_vector++) << (-right_shifts));
74 WebRtc_Word16 right_shifts)
78 if (right_shifts >
27 WebRtcSpl_VectorBitShiftW16(WebRtc_Word16 *res, WebRtc_Word16 length, G_CONST WebRtc_Word16 *in, WebRtc_Word16 right_shifts) argument
49 WebRtcSpl_VectorBitShiftW32(WebRtc_Word32 *out_vector, WebRtc_Word16 vector_length, G_CONST WebRtc_Word32 *in_vector, WebRtc_Word16 right_shifts) argument
71 WebRtcSpl_VectorBitShiftW32ToW16(WebRtc_Word16 *res, WebRtc_Word16 length, G_CONST WebRtc_Word32 *in, WebRtc_Word16 right_shifts) argument
94 WebRtcSpl_ScaleVector(G_CONST WebRtc_Word16 *in_vector, WebRtc_Word16 *out_vector, WebRtc_Word16 gain, WebRtc_Word16 in_vector_length, WebRtc_Word16 right_shifts) argument
112 WebRtcSpl_ScaleVectorWithSat(G_CONST WebRtc_Word16 *in_vector, WebRtc_Word16 *out_vector, WebRtc_Word16 gain, WebRtc_Word16 in_vector_length, WebRtc_Word16 right_shifts) argument
[all...]

Completed in 353 milliseconds