Lines Matching refs:spx_word32_t
140 static inline spx_word32_t cheb_poly_eva( in cheb_poly_eva()
149 spx_word32_t sum; in cheb_poly_eva()
177 static float cheb_poly_eva(spx_word32_t *coef, spx_word16_t x, int m, char *stack) in cheb_poly_eva()
229 spx_word32_t psuml,psumr,psumm,temp_psumr/*,temp_qsumr*/; in lpc_to_lsp()
231 VARDECL(spx_word32_t *Q); /* ptrs for memory allocation */ in lpc_to_lsp()
232 VARDECL(spx_word32_t *P); in lpc_to_lsp()
235 spx_word32_t *px; /* ptrs of respective P'(z) & Q'(z) */ in lpc_to_lsp()
236 spx_word32_t *qx; in lpc_to_lsp()
237 spx_word32_t *p; in lpc_to_lsp()
238 spx_word32_t *q; in lpc_to_lsp()
247 ALLOC(Q, (m+1), spx_word32_t); in lpc_to_lsp()
248 ALLOC(P, (m+1), spx_word32_t); in lpc_to_lsp()
409 spx_word32_t xout1,xout2,xin; in lsp_to_lpc()
410 spx_word32_t mult, a; in lsp_to_lpc()
412 VARDECL(spx_word32_t **xp); in lsp_to_lpc()
413 VARDECL(spx_word32_t *xpmem); in lsp_to_lpc()
414 VARDECL(spx_word32_t **xq); in lsp_to_lpc()
415 VARDECL(spx_word32_t *xqmem); in lsp_to_lpc()
442 ALLOC(xp, (m+1), spx_word32_t*); in lsp_to_lpc()
443 ALLOC(xpmem, (m+1)*(lpcrdr+1+2), spx_word32_t); in lsp_to_lpc()
445 ALLOC(xq, (m+1), spx_word32_t*); in lsp_to_lpc()
446 ALLOC(xqmem, (m+1)*(lpcrdr+1+2), spx_word32_t); in lsp_to_lpc()