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