OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:opus_int64
(Results
1 - 14
of
14
) sorted by null
/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
...]
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
103
extern
opus_int64
silk_Timer_sum[silk_NUM_TIMERS_MAX];
104
extern
opus_int64
silk_Timer_max[silk_NUM_TIMERS_MAX];
105
extern
opus_int64
silk_Timer_min[silk_NUM_TIMERS_MAX];
106
extern
opus_int64
silk_Timer_depth[silk_NUM_TIMERS_MAX];
macros.h
65
#define silk_SMLAL(a64, b32, c32) (silk_ADD64((a64), ((
opus_int64
)(b32) * (
opus_int64
)(c32))))
SigProc_FIX.h
351
opus_int64
silk_inner_prod16_aligned_64(
411
#define silk_SMLALBB(a64, b16, c16) silk_ADD64((a64),(
opus_int64
)((opus_int32)(b16) * (opus_int32)(c16)))
414
#define silk_SMULL(a32, b32) ((
opus_int64
)(a32) * /*(
opus_int64
)*/(b32))
472
#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 )
/external/libopus/celt/
fixed_debug.h
39
OPUS_EXPORT
opus_int64
celt_mips=0;
41
extern
opus_int64
celt_mips;
83
static OPUS_INLINE int NEG32(
opus_int64
x)
85
opus_int64
res;
182
static OPUS_INLINE int SHR32(
opus_int64
a, int shift)
184
opus_int64
res;
204
static OPUS_INLINE int SHL32_(
opus_int64
a, int shift, char *file, int line)
206
opus_int64
res;
283
static OPUS_INLINE int ADD32_(
opus_int64
a,
opus_int64
b, char *file, int line
[
all
...]
/external/libopus/celt/arm/
fixed_armv4.h
74
#define MULT32_32_Q31(a,b) (opus_val32)((((
opus_int64
)(a)) * ((
opus_int64
)(b)))>>31)
/external/libopus/silk/fixed/
vector_ops_FIX.c
84
opus_int64
silk_inner_prod16_aligned_64(
91
opus_int64
sum = 0;
warped_autocorrelation_FIX.c
50
opus_int64
corr_QC[ MAX_SHAPE_LPC_ORDER + 1 ] = { 0 };
find_LTP_FIX.c
115
silk_assert( ((
opus_int64
)Wght_Q15[ k ] << 16 ) < silk_int32_MAX ); /* Wght always < 0.5 in Q0 */
/external/libopus/include/
opus_types.h
152
#define
opus_int64
long long
macro
Completed in 3612 milliseconds