/external/speex/libspeex/ |
math_approx.h | 194 x2 = MULT16_16_P13(x,x); 195 return ADD32(K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2)))))); 198 x2 = MULT16_16_P13(x,x); 199 return SUB32(-K1, MULT16_16_P13(x2, ADD32(K2, MULT16_16_P13(x2, ADD32(K3, MULT16_16_P13(K4, x2))))));
|
arch.h | 206 #define MULT16_16_P13(a,b) ((a)*(b))
|
fixed_generic.h | 99 #define MULT16_16_P13(a,b) (SHR(ADD32(4096,MULT16_16((a),(b))),13))
|
fixed_debug.h | 385 static inline short MULT16_16_P13(int a, int b) 390 fprintf (stderr, "MULT16_16_P13: inputs are not short: %d %d\n", a, b); 395 fprintf (stderr, "MULT16_16_P13: overflow: %d*%d=%d\n", a, b, (int)res); 398 fprintf (stderr, "MULT16_16_P13: output is not short: %d*%d=%d\n", a, b, (int)res);
|
sb_celp.c | 707 target[i]=MULT16_16_P13(QCONST16(2.5f,13), target[i]); [all...] |
nb_celp.c | 862 target[i]=MULT16_16_P13(QCONST16(2.2f,13), target[i]); [all...] |
/external/libopus/celt/ |
arch.h | 230 #define MULT16_16_P13(a,b) ((a)*(b))
|
fixed_generic.h | 144 #define MULT16_16_P13(a,b) (SHR(ADD32(4096,MULT16_16((a),(b))),13))
|
fixed_debug.h | 612 static OPUS_INLINE short MULT16_16_P13(int a, int b) 617 fprintf (stderr, "MULT16_16_P13: inputs are not short: %d %d\n", a, b); 626 fprintf (stderr, "MULT16_16_P13: overflow: %d*%d=%d\n", a, b, (int)res); 634 fprintf (stderr, "MULT16_16_P13: output is not short: %d*%d=%d\n", a, b, (int)res);
|