Lines Matching refs:w0
275 DATA_TYPE *w0 = x; in mdct_step7() local
284 s0 = w0[0] + w1[0]; in mdct_step7()
285 s1 = w1[1] - w0[1]; in mdct_step7()
290 s0 = (w0[1] + w1[1])>>1; in mdct_step7()
291 s1 = (w0[0] - w1[0])>>1; in mdct_step7()
292 w0[0] = s0 + s2; in mdct_step7()
293 w0[1] = s1 + s3; in mdct_step7()
297 w0 += 2; in mdct_step7()
302 s0 = w0[0] + w1[0]; in mdct_step7()
303 s1 = w1[1] - w0[1]; in mdct_step7()
308 s0 = (w0[1] + w1[1])>>1; in mdct_step7()
309 s1 = (w0[0] - w1[0])>>1; in mdct_step7()
310 w0[0] = s0 + s2; in mdct_step7()
311 w0[1] = s1 + s3; in mdct_step7()
315 w0 += 2; in mdct_step7()
316 }while(w0<w1); in mdct_step7()
472 LOOKUP_T *w0, in mdct_unroll_lap() argument
482 LOOKUP_T *wR=(W && lW ? w1+(n1>>1) : w0+(n0>>1)); in mdct_unroll_lap()
483 LOOKUP_T *wL=(W && lW ? w1 : w0 ); in mdct_unroll_lap()