/external/libopus/silk/ |
D | MacroDebug.h | 71 static OPUS_INLINE opus_int64 silk_ADD64_(opus_int64 a, opus_int64 b, char *file, int line){ in silk_ADD64_() 72 opus_int64 ret; in silk_ADD64_() 119 static OPUS_INLINE opus_int64 silk_SUB64_(opus_int64 a, opus_int64 b, char *file, int line){ in silk_SUB64_() 120 opus_int64 ret; in silk_SUB64_() 155 if ( res != silk_SAT32( (opus_int64)a32 + (opus_int64)b32 ) ) in silk_ADD_SAT32_() 167 static OPUS_INLINE opus_int64 silk_ADD_SAT64_( opus_int64 a64, opus_int64 b64, char *file, int line… in silk_ADD_SAT64_() 168 opus_int64 res; in silk_ADD_SAT64_() 216 if ( res != silk_SAT32( (opus_int64)a32 - (opus_int64)b32 ) ) in silk_SUB_SAT32_() 228 static OPUS_INLINE opus_int64 silk_SUB_SAT64_( opus_int64 a64, opus_int64 b64, char *file, int line… in silk_SUB_SAT64_() 229 opus_int64 res; in silk_SUB_SAT64_() [all …]
|
D | MacroCount.h | 33 #define varDefine opus_int64 ops_count = 0; 35 extern opus_int64 ops_count; 37 static OPUS_INLINE opus_int64 silk_SaveCount(){ in silk_SaveCount() 41 static OPUS_INLINE opus_int64 silk_SaveResetCount(){ in silk_SaveResetCount() 42 opus_int64 ret; in silk_SaveResetCount() 182 static OPUS_INLINE opus_int64 silk_SMULL(opus_int32 a32, opus_int32 b32){ in silk_SMULL() 183 opus_int64 ret; in silk_SMULL() 185 ret = ((opus_int64)(a32) * /*(opus_int64)*/(b32)); in silk_SMULL() 190 static OPUS_INLINE opus_int64 silk_SMLAL(opus_int64 a64, opus_int32 b32, opus_int32 c32){ in silk_SMLAL() 191 opus_int64 ret; in silk_SMLAL() [all …]
|
D | macros.h | 44 #define silk_SMULWB(a32, b32) ((opus_int32)(((a32) * (opus_int64)((opus_int16)(b32))) >>… 51 #define silk_SMLAWB(a32, b32, c32) ((opus_int32)((a32) + (((b32) * (opus_int64)((opus_int16)(… 58 #define silk_SMULWT(a32, b32) ((opus_int32)(((a32) * (opus_int64)((b32) >> 16)) >> 16)) 65 #define silk_SMLAWT(a32, b32, c32) ((opus_int32)((a32) + (((b32) * ((opus_int64)(c32) >> 16))… 83 #define silk_SMLAL(a64, b32, c32) (silk_ADD64((a64), ((opus_int64)(b32) * (opus_int64)(c32))… 87 #define silk_SMULWW(a32, b32) ((opus_int32)(((opus_int64)(a32) * (b32)) >> 16)) 94 #define silk_SMLAWW(a32, b32, c32) ((opus_int32)((a32) + (((opus_int64)(b32) * (c32)) >> 16)))
|
D | SigProc_FIX.h | 384 opus_int64 silk_inner_prod16_aligned_64_c( 444 #define silk_SMLALBB(a64, b16, c16) silk_ADD64((a64),(opus_int64)((opus_int32)(b16) * (opus… 447 #define silk_SMULL(a32, b32) ((opus_int64)(a32) * /*(opus_int64)*/(b32)) 525 #define silk_LSHIFT64(a, shift) ((opus_int64)((opus_uint64)(a)<<(shift))) /* shif… 564 #define SILK_FIX_CONST( C, Q ) ((opus_int32)((C) * ((opus_int64)1 << (Q)) + 0.5)) 579 static OPUS_INLINE opus_int64 silk_min_64(opus_int64 a, opus_int64 b) in silk_min_64() 597 static OPUS_INLINE opus_int64 silk_max_64(opus_int64 a, opus_int64 b) in silk_max_64()
|
D | debug.c | 74 opus_int64 silk_Timer_min[silk_NUM_TIMERS_MAX]; 75 opus_int64 silk_Timer_sum[silk_NUM_TIMERS_MAX]; 76 opus_int64 silk_Timer_max[silk_NUM_TIMERS_MAX]; 77 opus_int64 silk_Timer_depth[silk_NUM_TIMERS_MAX];
|
D | debug.h | 90 extern opus_int64 silk_Timer_sum[silk_NUM_TIMERS_MAX]; 91 extern opus_int64 silk_Timer_max[silk_NUM_TIMERS_MAX]; 92 extern opus_int64 silk_Timer_min[silk_NUM_TIMERS_MAX]; 93 extern opus_int64 silk_Timer_depth[silk_NUM_TIMERS_MAX];
|
D | typedef.h | 40 #define silk_int64_MAX ((opus_int64)0x7FFFFFFFFFFFFFFFLL) /* 2^63 - 1 */ 41 #define silk_int64_MIN ((opus_int64)0x8000000000000000LL) /* -2^63 */
|
D | Inlines.h | 41 static OPUS_INLINE opus_int32 silk_CLZ64( opus_int64 in ) in silk_CLZ64()
|
D | LPC_inv_pred_gain.c | 80 opus_int64 tmp64; in LPC_inverse_pred_gain_QA_c()
|
/external/libopus/celt/ |
D | fixed_debug.h | 39 OPUS_EXPORT opus_int64 celt_mips=0; 41 extern opus_int64 celt_mips; 91 static OPUS_INLINE int NEG32(opus_int64 x) in NEG32() 93 opus_int64 res; in NEG32() 190 static OPUS_INLINE int SHR32(opus_int64 a, int shift) in SHR32() 192 opus_int64 res; in SHR32() 212 static OPUS_INLINE int SHL32_(opus_int64 a, int shift, char *file, int line) in SHL32_() 214 opus_int64 res; in SHL32_() 290 static OPUS_INLINE int ADD32_(opus_int64 a, opus_int64 b, char *file, int line) in ADD32_() 292 opus_int64 res; in ADD32_() [all …]
|
D | fixed_generic.h | 41 #define MULT16_32_Q16(a,b) ((opus_val32)SHR((opus_int64)((opus_val16)(a))*(b),16)) 48 #define MULT16_32_P16(a,b) ((opus_val32)PSHR((opus_int64)((opus_val16)(a))*(b),16)) 55 #define MULT16_32_Q15(a,b) ((opus_val32)SHR((opus_int64)((opus_val16)(a))*(b),15)) 62 #define MULT32_32_Q31(a,b) ((opus_val32)SHR((opus_int64)(a)*(opus_int64)(b),31))
|
D | arch.h | 121 typedef opus_int64 opus_val64;
|
/external/libopus/celt/mips/ |
D | pitch_mipsr1.h | 70 opus_int64 sum_0, sum_1, sum_2, sum_3; in xcorr_kernel_mips() 71 sum_0 = (opus_int64)sum[0]; in xcorr_kernel_mips() 72 sum_1 = (opus_int64)sum[1]; in xcorr_kernel_mips() 73 sum_2 = (opus_int64)sum[2]; in xcorr_kernel_mips() 74 sum_3 = (opus_int64)sum[3]; in xcorr_kernel_mips()
|
/external/libopus/include/ |
D | opus_types.h | 37 #define opus_int64 long long macro 47 # undef opus_int64 57 typedef int64_t opus_int64; typedef
|
/external/libopus/celt/arm/ |
D | fixed_armv4.h | 78 #define MULT32_32_Q31(a,b) (opus_val32)((((opus_int64)(a)) * ((opus_int64)(b)))>>31)
|
/external/libopus/silk/fixed/x86/ |
D | vector_ops_FIX_sse4_1.c | 40 opus_int64 silk_inner_prod16_aligned_64_sse4_1( in silk_inner_prod16_aligned_64_sse4_1() 47 opus_int64 sum; in silk_inner_prod16_aligned_64_sse4_1()
|
D | prefilter_FIX_sse.c | 66 register opus_int64 coef_Q13_8, coef_Q13_9; in silk_warped_LPC_analysis_filter_FIX_sse4_1() 76 coef_Q13_8 = (opus_int64) coef_Q13[ 8 ]; in silk_warped_LPC_analysis_filter_FIX_sse4_1() 77 coef_Q13_9 = (opus_int64) coef_Q13[ 9 ]; in silk_warped_LPC_analysis_filter_FIX_sse4_1()
|
/external/libopus/silk/fixed/ |
D | vector_ops_FIX.c | 90 opus_int64 silk_inner_prod16_aligned_64_c( in silk_inner_prod16_aligned_64_c() 97 opus_int64 sum = 0; in silk_inner_prod16_aligned_64_c()
|
D | find_LTP_FIX.c | 88 … XXLTP_Q17_ptr[ i ] = (opus_int32)( silk_LSHIFT64( (opus_int64)XXLTP_Q17_ptr[ i ], 17 ) / temp ); in silk_find_LTP_FIX() 91 … xXLTP_Q17_ptr[ i ] = (opus_int32)( silk_LSHIFT64( (opus_int64)xXLTP_Q17_ptr[ i ], 17 ) / temp ); in silk_find_LTP_FIX()
|
D | warped_autocorrelation_FIX.c | 52 opus_int64 corr_QC[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 }; in silk_warped_autocorrelation_FIX_c()
|
/external/libopus/silk/fixed/arm/ |
D | warped_autocorrelation_FIX_neon_intr.c | 39 static OPUS_INLINE void calc_corr( const opus_int32 *const input_QS, opus_int64 *const corr_QC, con… in calc_corr() 73 opus_int64 corr_QC[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 }; /* In reverse order */ in silk_warped_autocorrelation_FIX_neon() 74 opus_int64 corr_QC_orderT; in silk_warped_autocorrelation_FIX_neon() 77 opus_int64 *corr_QCT; in silk_warped_autocorrelation_FIX_neon()
|
/external/libopus/silk/x86/ |
D | SigProc_FIX_sse.h | 70 opus_int64 silk_inner_prod16_aligned_64_sse4_1( 84 extern opus_int64 (*const SILK_INNER_PROD16_ALIGNED_64_IMPL[OPUS_ARCHMASK + 1])(
|
D | x86_silk_map.c | 44 opus_int64 (*const SILK_INNER_PROD16_ALIGNED_64_IMPL[ OPUS_ARCHMASK + 1 ] )(
|
/external/libopus/silk/fixed/mips/ |
D | warped_autocorrelation_FIX_mipsr1.h | 58 opus_int64 corr_QC[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 }; in silk_warped_autocorrelation_FIX() 59 opus_int64 temp64; in silk_warped_autocorrelation_FIX()
|
/external/libopus/silk/arm/ |
D | LPC_inv_pred_gain_neon_intr.c | 138 opus_int64 tmp64; in LPC_inverse_pred_gain_QA_neon()
|