Searched refs:silk_SMLAWT (Results 1 - 10 of 10) sorted by relevance
/external/libopus/silk/arm/ |
H A D | macros_armv4.h | 68 #undef silk_SMLAWT macro 69 #define silk_SMLAWT(a, b, c) ((a) + silk_SMULWT(b, c)) macro
|
H A D | macros_armv5e.h | 79 #undef silk_SMLAWT macro 85 "#silk_SMLAWT\n\t" 92 #define silk_SMLAWT(a, b, c) (silk_SMLAWT_armv5e(a, b, c)) macro
|
/external/libopus/silk/ |
H A D | macros.h | 72 #define silk_SMLAWT(a32, b32, c32) ((opus_int32)((a32) + (((b32) * ((opus_int64)(c32) >> 16)) >> 16))) macro 74 #define silk_SMLAWT(a32, b32, c32) ((a32) + (((b32) >> 16) * ((c32) >> 16)) + ((((b32) & 0x0000FFFF) * ((c32) >> 16)) >> 16)) macro
|
H A D | NSQ.c | 258 n_LF_Q12 = silk_SMLAWT( n_LF_Q12, NSQ->sLF_AR_shp_Q14, LF_shp_Q14 ); 268 n_LTP_Q13 = silk_SMLAWT( n_LTP_Q13, shp_lag_ptr[ -1 ], HarmShapeFIRPacked_Q14 );
|
H A D | MacroCount.h | 106 #undef silk_SMLAWT macro 107 static OPUS_INLINE opus_int32 silk_SMLAWT(opus_int32 a32, opus_int32 b32, opus_int32 c32){ function 179 #define silk_SMLAWT_ovflw silk_SMLAWT
|
H A D | NSQ_del_dec.c | 393 n_LTP_Q14 = silk_SMLAWT( n_LTP_Q14, shp_lag_ptr[ -1 ], HarmShapeFIRPacked_Q14 ); 444 n_LF_Q14 = silk_SMLAWT( n_LF_Q14, psDD->LF_AR_Q14, LF_shp_Q14 ); /* Q12 */
|
H A D | MacroDebug.h | 362 #undef silk_SMLAWT macro 363 #define silk_SMLAWT(a,b,c) silk_SMLAWT_((a), (b), (c), __FILE__, __LINE__) macro 369 fprintf (stderr, "silk_SMLAWT(%d, %d, %d) in %s: line %d\n", a32, b32, c32, file, line);
|
/external/libopus/silk/mips/ |
H A D | NSQ_del_dec_mipsr1.h | 146 n_LTP_Q14 = silk_SMLAWT( n_LTP_Q14, shp_lag_ptr[ -1 ], HarmShapeFIRPacked_Q14 ); 225 n_LF_Q14 = silk_SMLAWT( n_LF_Q14, psDD->LF_AR_Q14, LF_shp_Q14 ); /* Q12 */
|
/external/libopus/silk/x86/ |
H A D | NSQ_del_dec_sse.c | 410 n_LTP_Q14 = silk_SMLAWT( n_LTP_Q14, shp_lag_ptr[ -1 ], HarmShapeFIRPacked_Q14 ); 540 n_LF_Q14 = silk_SMLAWT( n_LF_Q14, psDD->LF_AR_Q14, LF_shp_Q14 ); /* Q12 */
|
H A D | NSQ_sse.c | 464 n_LF_Q12 = silk_SMLAWT( n_LF_Q12, sLF_AR_shp_Q14, LF_shp_Q14 ); 474 n_LTP_Q13 = silk_SMLAWT( n_LTP_Q13, shp_lag_ptr[ -1 ], HarmShapeFIRPacked_Q14 );
|
Completed in 182 milliseconds