HomeSort by relevance Sort by last modified time
    Searched refs:opus_int64 (Results 1 - 25 of 27) sorted by null

1 2

  /external/libopus/silk/
MacroDebug.h 71 static OPUS_INLINE opus_int64 silk_ADD64_(opus_int64 a, opus_int64 b, char *file, int line){
72 opus_int64 ret;
119 static OPUS_INLINE opus_int64 silk_SUB64_(opus_int64 a, opus_int64 b, char *file, int line){
120 opus_int64 ret;
155 if ( res != silk_SAT32( (opus_int64)a32 + (opus_int64)b32 )
    [all...]
MacroCount.h 33 #define varDefine opus_int64 ops_count = 0;
35 extern opus_int64 ops_count;
37 static OPUS_INLINE opus_int64 silk_SaveCount(){
41 static OPUS_INLINE opus_int64 silk_SaveResetCount(){
42 opus_int64 ret;
182 static OPUS_INLINE opus_int64 silk_SMULL(opus_int32 a32, opus_int32 b32){
183 opus_int64 ret;
185 ret = ((opus_int64)(a32) * /*(opus_int64)*/(b32));
190 static OPUS_INLINE opus_int64 silk_SMLAL(opus_int64 a64, opus_int32 b32, opus_int32 c32)
    [all...]
macros.h 44 #define silk_SMULWB(a32, b32) ((opus_int32)(((a32) * (opus_int64)((opus_int16)(b32))) >> 16))
51 #define silk_SMLAWB(a32, b32, c32) ((opus_int32)((a32) + (((b32) * (opus_int64)((opus_int16)(c32))) >> 16)))
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)) >> 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)))
typedef.h 40 #define silk_int64_MAX ((opus_int64)0x7FFFFFFFFFFFFFFFLL) /* 2^63 - 1 */
41 #define silk_int64_MIN ((opus_int64)0x8000000000000000LL) /* -2^63 */
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];
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];
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_int32)(c16)))
447 #define silk_SMULL(a32, b32) ((opus_int64)(a32) * /*(opus_int64)*/(b32))
525 #define silk_LSHIFT64(a, shift) ((opus_int64)((opus_uint64)(a)<<(shift))) /* shift >= 0, shift < 64 *
    [all...]
Inlines.h 40 /* count leading zeros of opus_int64 */
41 static OPUS_INLINE opus_int32 silk_CLZ64( opus_int64 in )
LPC_inv_pred_gain.c 80 opus_int64 tmp64;
  /external/libopus/celt/
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)
93 opus_int64 res;
190 static OPUS_INLINE int SHR32(opus_int64 a, int shift)
192 opus_int64 res;
212 static OPUS_INLINE int SHL32_(opus_int64 a, int shift, char *file, int line)
214 opus_int64 res;
290 static OPUS_INLINE int ADD32_(opus_int64 a, opus_int64 b, char *file, int line
    [all...]
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))
arch.h 106 /* Set this if opus_int64 is a native type of the CPU. */
121 typedef opus_int64 opus_val64;
  /external/libopus/include/
opus_types.h 37 #define opus_int64 long long macro
47 # undef opus_int64 macro
57 typedef int64_t opus_int64; typedef
  /external/libopus/celt/arm/
fixed_armv4.h 78 #define MULT32_32_Q31(a,b) (opus_val32)((((opus_int64)(a)) * ((opus_int64)(b)))>>31)
  /external/libopus/silk/fixed/
vector_ops_FIX.c 90 opus_int64 silk_inner_prod16_aligned_64_c(
97 opus_int64 sum = 0;
find_LTP_FIX.c 88 XXLTP_Q17_ptr[ i ] = (opus_int32)( silk_LSHIFT64( (opus_int64)XXLTP_Q17_ptr[ i ], 17 ) / temp );
91 xXLTP_Q17_ptr[ i ] = (opus_int32)( silk_LSHIFT64( (opus_int64)xXLTP_Q17_ptr[ i ], 17 ) / temp );
warped_autocorrelation_FIX.c 52 opus_int64 corr_QC[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 };
  /external/libopus/silk/fixed/x86/
vector_ops_FIX_sse4_1.c 40 opus_int64 silk_inner_prod16_aligned_64_sse4_1(
47 opus_int64 sum;
prefilter_FIX_sse.c 66 register opus_int64 coef_Q13_8, coef_Q13_9;
76 coef_Q13_8 = (opus_int64) coef_Q13[ 8 ];
77 coef_Q13_9 = (opus_int64) coef_Q13[ 9 ];
  /external/libopus/silk/x86/
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])(
x86_silk_map.c 44 opus_int64 (*const SILK_INNER_PROD16_ALIGNED_64_IMPL[ OPUS_ARCHMASK + 1 ] )(
  /external/libopus/celt/mips/
pitch_mipsr1.h 70 opus_int64 sum_0, sum_1, sum_2, sum_3;
71 sum_0 = (opus_int64)sum[0];
72 sum_1 = (opus_int64)sum[1];
73 sum_2 = (opus_int64)sum[2];
74 sum_3 = (opus_int64)sum[3];
  /external/libopus/silk/fixed/arm/
warped_autocorrelation_FIX_neon_intr.c 39 static OPUS_INLINE void calc_corr( const opus_int32 *const input_QS, opus_int64 *const corr_QC, const opus_int offset, const int32x4_t state_QS_s32x4 )
73 opus_int64 corr_QC[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 }; /* In reverse order */
74 opus_int64 corr_QC_orderT;
77 opus_int64 *corr_QCT;
  /external/libopus/silk/fixed/mips/
warped_autocorrelation_FIX_mipsr1.h 58 opus_int64 corr_QC[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 };
59 opus_int64 temp64;
  /external/libopus/silk/arm/
LPC_inv_pred_gain_neon_intr.c 138 opus_int64 tmp64;

Completed in 488 milliseconds

1 2