Home
last modified time | relevance | path

Searched refs:MULT16_32_Q14 (Results 1 – 8 of 8) sorted by relevance

/external/speex/libspeex/
Dfixed_arm4.h38 #undef MULT16_32_Q14
39 static inline spx_word32_t MULT16_32_Q14(spx_word16_t x, spx_word32_t y) { in MULT16_32_Q14() function
Dfixed_bfin.h138 #undef MULT16_32_Q14
139 static inline spx_word32_t MULT16_32_Q14(spx_word16_t a, spx_word32_t b) in MULT16_32_Q14() function
Dlsp.c476 xp[1][3] = -MULT16_32_Q14(freqn[0],xp[0][2]); in lsp_to_lpc()
477 xq[1][3] = -MULT16_32_Q14(freqn[1],xq[0][2]); in lsp_to_lpc()
486 mult = MULT16_32_Q14(freqn[2*i],xp[i][j+1]); in lsp_to_lpc()
488 mult = MULT16_32_Q14(freqn[2*i+1],xq[i][j+1]); in lsp_to_lpc()
494 mult = MULT16_32_Q14(freqn[2*i],xp[i][j+1]); in lsp_to_lpc()
496 mult = MULT16_32_Q14(freqn[2*i+1],xq[i][j+1]); in lsp_to_lpc()
Darch.h191 #define MULT16_32_Q14(a,b) ((a)*(b)) macro
Dfixed_generic.h80 #define MULT16_32_Q14(a,b) ADD32(MULT16_16((a),SHR((b),14)), SHR(MULT16_16((a),((b)&0x00003fff)),14… macro
Dnb_celp.c826 ener=MULT16_32_Q14(exc_gain_quant_scal3[qe],ol_gain); in nb_encode()
830 ener=MULT16_32_Q14(exc_gain_quant_scal1[qe],ol_gain); in nb_encode()
1388 ener = MULT16_32_Q14(exc_gain_quant_scal3[q_energy],ol_gain); in nb_decode()
1392 ener = MULT16_32_Q14(exc_gain_quant_scal1[q_energy],ol_gain); in nb_decode()
Dfixed_debug.h312 #define MULT16_32_Q14(a,b) MULT16_32_QX(a,b,14) macro
Dfilters.c118 y[i] = SHL32(MULT16_32_Q14(EXTRACT16(SHR32(x[i],7)),scale),7); in signal_mul()