Lines Matching refs:opus_int16

65     opus_int16                  out[],              /* O    Output signal                                               */
66 const opus_int16 in[], /* I Input signal */
75 opus_int16 *out, /* O Output signal [ len ] */
76 const opus_int16 *in, /* I Input signal [ floor(len/2) ] */
85 opus_int16 *out, /* O Output signal [ floor(2*inLen/3) ] */
86 const opus_int16 *in, /* I Input signal [ inLen ] */
96 const opus_int16 *in, /* I input signal */
100 opus_int16 *out, /* O output signal */
107 opus_int16 *out, /* O Output signal */
108 const opus_int16 *in, /* I Input signal */
109 const opus_int16 *B, /* I MA prediction coefficients, Q12 [order] */
116 opus_int16 *ar, /* I/O AR filter to be expanded (without leading 1) */
131 const opus_int16 *A_Q12, /* I Prediction coefficients, Q12 [order] */
143 const opus_int16 *in, /* I Input signal [N] */
145 opus_int16 *outL, /* O Low band [N/2] */
146 opus_int16 *outH, /* O High band [N/2] */
176 const opus_int16 *x, /* I Input vector */
184 opus_int16 *rc_Q15, /* O reflection coefficients [order] Q15 */
201 const opus_int16 *rc_Q15, /* I Reflection coefficients [order] Q15 */
218 opus_int16 px_win[], /* O Pointer to windowed signal */
219 const opus_int16 px[], /* I Pointer to input signal */
228 const opus_int16 *inputData, /* I Input data to correlate */
235 opus_int16 lagIndex, /* I */
243 const opus_int16 *frame, /* I Signal of length PE_FRAME_LENGTH_MS*Fs_kHz */
245 opus_int16 *lagIndex, /* O Lag Index */
260 opus_int16 *NLSF, /* O Normalized Line Spectral Frequencies in Q15 (0..2^15-1) [d] */
267 opus_int16 *a_Q12, /* O monic whitening filter coefficients in Q12, [ d ] */
268 const opus_int16 *NLSF, /* I normalized line spectral frequencies in Q15, [ d ] */
280 opus_int16 *a, /* I/O Unsorted / Sorted vector */
287 opus_int16 *a, /* I/O Unsorted / Sorted vector */
293 opus_int16 *NLSF_Q15, /* I/O Unstable/stabilized normalized LSF vector in Q15 [L] */
294 const opus_int16 *NDeltaMin_Q15, /* I Min distance vector, NDeltaMin_Q15[L] must be >= 1 [L+1] */
300 opus_int16 *pNLSFW_Q_OUT, /* O Pointer to input vector weights [D] */
301 const opus_int16 *pNLSF_Q15, /* I Pointer to input vector [D] */
310 const opus_int16 x[], /* I Input signal, length: nb_subfr * ( D + subfr_length ) */
320 opus_int16 *data_out,
321 const opus_int16 *data_in,
339 const opus_int16 *const inVec1, /* I input vector 1 */
340 const opus_int16 *const inVec2, /* I input vector 2 */
345 const opus_int16 *const inVec1, /* I input vector 1 */
346 const opus_int16 *const inVec2, /* I input vector 2 */
352 const opus_int16 *inVec1, /* I input vector 1 */
353 const opus_int16 *inVec2, /* I input vector 2 */
379 /* Allocate opus_int16 aligned to 4-byte memory address */
425 #define silk_SMLABB_ovflw(a32, b32, c32) (silk_ADD32_ovflw((a32) , ((opus_int32)((opus_int16)(b32))) * (opus_int32)((opus_int16)(c32))))
450 #define silk_ADD_SAT16(a, b) (opus_int16)silk_SAT16( silk_ADD32( (opus_int32)(a), (b) ) )
455 #define silk_SUB_SAT16(a, b) (opus_int16)silk_SAT16( silk_SUB32( (opus_int32)(a), (b) ) )
470 #define silk_LSHIFT16(a, shift) ((opus_int16)((opus_uint16)(a)<<(shift))) /* shift >= 0, shift < 16 */
518 static OPUS_INLINE opus_int16 silk_min_16(opus_int16 a, opus_int16 b)
536 static OPUS_INLINE opus_int16 silk_max_16(opus_int16 a, opus_int16 b)