Home | History | Annotate | Download | only in jpeg

Lines Matching defs:DCTSIZE

78 #define DCTSIZE	   8
79 #define DCTSIZE2 (DCTSIZE*DCTSIZE)
140 for (ctr = DCTSIZE; ctr > 0; ctr--) {
150 if (inptr[DCTSIZE*1] == 0 && inptr[DCTSIZE*2] == 0 &&
151 inptr[DCTSIZE*3] == 0 && inptr[DCTSIZE*4] == 0 &&
152 inptr[DCTSIZE*5] == 0 && inptr[DCTSIZE*6] == 0 &&
153 inptr[DCTSIZE*7] == 0) {
155 FAST_FLOAT dcval = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
157 wsptr[DCTSIZE*0] = dcval;
158 wsptr[DCTSIZE*1] = dcval;
159 wsptr[DCTSIZE*2] = dcval;
160 wsptr[DCTSIZE*3] = dcval;
161 wsptr[DCTSIZE*4] = dcval;
162 wsptr[DCTSIZE*5] = dcval;
163 wsptr[DCTSIZE*6] = dcval;
164 wsptr[DCTSIZE*7] = dcval;
174 tmp0 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
175 tmp1 = DEQUANTIZE(inptr[DCTSIZE*2], quantptr[DCTSIZE*2]);
176 tmp2 = DEQUANTIZE(inptr[DCTSIZE*4], quantptr[DCTSIZE*4]);
177 tmp3 = DEQUANTIZE(inptr[DCTSIZE*6], quantptr[DCTSIZE*6]);
192 tmp4 = DEQUANTIZE(inptr[DCTSIZE*1], quantptr[DCTSIZE*1]);
193 tmp5 = DEQUANTIZE(inptr[DCTSIZE*3], quantptr[DCTSIZE*3]);
194 tmp6 = DEQUANTIZE(inptr[DCTSIZE*5], quantptr[DCTSIZE*5]);
195 tmp7 = DEQUANTIZE(inptr[DCTSIZE*7], quantptr[DCTSIZE*7]);
213 wsptr[DCTSIZE*0] = tmp0 + tmp7;
214 wsptr[DCTSIZE*7] = tmp0 - tmp7;
215 wsptr[DCTSIZE*1] = tmp1 + tmp6;
216 wsptr[DCTSIZE*6] = tmp1 - tmp6;
217 wsptr[DCTSIZE*2] = tmp2 + tmp5;
218 wsptr[DCTSIZE*5] = tmp2 - tmp5;
219 wsptr[DCTSIZE*4] = tmp3 + tmp4;
220 wsptr[DCTSIZE*3] = tmp3 - tmp4;
232 for (ctr = 0; ctr < DCTSIZE; ctr++) {
282 wsptr += DCTSIZE; /* advance pointer to next row */