Lines Matching full:points
197 STIN void mdct_butterfly_generic(DATA_TYPE *x,int points,int step){
199 DATA_TYPE *x1 = x + points - 4;
200 DATA_TYPE *x2 = x + (points>>1) - 4;
213 x1 = x + (points>>1) + (points>>2) - 4;
214 x2 = x + (points>>2) - 4;
228 STIN void mdct_butterflies(DATA_TYPE *x,int points,int shift){
236 mdct_butterfly_generic(x+(points>>i)*j,points>>i,4<<(i+shift));
240 for(j=0;j<points;j+=32)