Searched refs:state_QS (Results 1 – 2 of 2) sorted by relevance
/external/libopus/silk/fixed/mips/ |
D | warped_autocorrelation_FIX_mipsr1.h | 57 opus_int32 state_QS[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 }; in silk_warped_autocorrelation_FIX() local 82 tmp2_QS = silk_SMLAWB( state_QS[ i ], state_QS[ i + 1 ] - tmp1_QS, warping_Q16 ); in silk_warped_autocorrelation_FIX() 92 state_QS[ i ] = tmp7_QS; in silk_warped_autocorrelation_FIX() 93 corr_QC[ i ] = __builtin_mips_madd( corr_QC[ i ], tmp7_QS, state_QS[0]); in silk_warped_autocorrelation_FIX() 96 tmp1_QS = silk_SMLAWB( state_QS[ i + 1 ], state_QS[ i + 2 ] - tmp2_QS, warping_Q16 ); in silk_warped_autocorrelation_FIX() 106 state_QS[ i + 1 ] = tmp8_QS; in silk_warped_autocorrelation_FIX() 107 corr_QC[ i+1 ] = __builtin_mips_madd( corr_QC[ i+1 ], tmp8_QS, state_QS[ 0 ]); in silk_warped_autocorrelation_FIX() 110 state_QS[ order ] = tmp7_QS; in silk_warped_autocorrelation_FIX() 115 corr_QC[ order ] = __builtin_mips_madd( corr_QC[ order ], tmp7_QS, state_QS[ 0 ]); in silk_warped_autocorrelation_FIX() 126 tmp2_QS = silk_SMLAWB( state_QS[ i ], state_QS[ i + 1 ] - tmp1_QS, warping_Q16 ); in silk_warped_autocorrelation_FIX() [all …]
|
/external/libopus/silk/fixed/ |
D | warped_autocorrelation_FIX.c | 51 opus_int32 state_QS[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 }; in silk_warped_autocorrelation_FIX_c() local 64 tmp2_QS = silk_SMLAWB( state_QS[ i ], state_QS[ i + 1 ] - tmp1_QS, warping_Q16 ); in silk_warped_autocorrelation_FIX_c() 65 state_QS[ i ] = tmp1_QS; in silk_warped_autocorrelation_FIX_c() 66 corr_QC[ i ] += silk_RSHIFT64( silk_SMULL( tmp1_QS, state_QS[ 0 ] ), 2 * QS - QC ); in silk_warped_autocorrelation_FIX_c() 68 tmp1_QS = silk_SMLAWB( state_QS[ i + 1 ], state_QS[ i + 2 ] - tmp2_QS, warping_Q16 ); in silk_warped_autocorrelation_FIX_c() 69 state_QS[ i + 1 ] = tmp2_QS; in silk_warped_autocorrelation_FIX_c() 70 corr_QC[ i + 1 ] += silk_RSHIFT64( silk_SMULL( tmp2_QS, state_QS[ 0 ] ), 2 * QS - QC ); in silk_warped_autocorrelation_FIX_c() 72 state_QS[ order ] = tmp1_QS; in silk_warped_autocorrelation_FIX_c() 73 corr_QC[ order ] += silk_RSHIFT64( silk_SMULL( tmp1_QS, state_QS[ 0 ] ), 2 * QS - QC ); in silk_warped_autocorrelation_FIX_c()
|