Lines Matching refs:wsptr
181 int * wsptr; variable
194 wsptr = workspace;
213 wsptr[DCTSIZE*0] = dcval;
214 wsptr[DCTSIZE*1] = dcval;
215 wsptr[DCTSIZE*2] = dcval;
216 wsptr[DCTSIZE*3] = dcval;
217 wsptr[DCTSIZE*4] = dcval;
218 wsptr[DCTSIZE*5] = dcval;
219 wsptr[DCTSIZE*6] = dcval;
220 wsptr[DCTSIZE*7] = dcval;
224 wsptr++;
283 wsptr[DCTSIZE*0] = (int) DESCALE(tmp10 + tmp3, CONST_BITS-PASS1_BITS);
284 wsptr[DCTSIZE*7] = (int) DESCALE(tmp10 - tmp3, CONST_BITS-PASS1_BITS);
285 wsptr[DCTSIZE*1] = (int) DESCALE(tmp11 + tmp2, CONST_BITS-PASS1_BITS);
286 wsptr[DCTSIZE*6] = (int) DESCALE(tmp11 - tmp2, CONST_BITS-PASS1_BITS);
287 wsptr[DCTSIZE*2] = (int) DESCALE(tmp12 + tmp1, CONST_BITS-PASS1_BITS);
288 wsptr[DCTSIZE*5] = (int) DESCALE(tmp12 - tmp1, CONST_BITS-PASS1_BITS);
289 wsptr[DCTSIZE*3] = (int) DESCALE(tmp13 + tmp0, CONST_BITS-PASS1_BITS);
290 wsptr[DCTSIZE*4] = (int) DESCALE(tmp13 - tmp0, CONST_BITS-PASS1_BITS);
294 wsptr++;
301 wsptr = workspace;
313 if (wsptr[1] == 0 && wsptr[2] == 0 && wsptr[3] == 0 && wsptr[4] == 0 &&
314 wsptr[5] == 0 && wsptr[6] == 0 && wsptr[7] == 0) {
316 JSAMPLE dcval = range_limit[(int) DESCALE((INT32) wsptr[0], PASS1_BITS+3)
328 wsptr += DCTSIZE; /* advance pointer to next row */
336 z2 = (INT32) wsptr[2];
337 z3 = (INT32) wsptr[6];
343 tmp0 = LEFT_SHIFT((INT32) wsptr[0] + (INT32) wsptr[4], CONST_BITS);
344 tmp1 = LEFT_SHIFT((INT32) wsptr[0] - (INT32) wsptr[4], CONST_BITS);
355 tmp0 = (INT32) wsptr[7];
356 tmp1 = (INT32) wsptr[5];
357 tmp2 = (INT32) wsptr[3];
358 tmp3 = (INT32) wsptr[1];
410 wsptr += DCTSIZE; /* advance pointer to next row */
434 int * wsptr; in jpeg_idct_7x7() local
445 wsptr = workspace; in jpeg_idct_7x7()
446 for (ctr = 0; ctr < 7; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_7x7()
486 wsptr[7*0] = (int) RIGHT_SHIFT(tmp10 + tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_7x7()
487 wsptr[7*6] = (int) RIGHT_SHIFT(tmp10 - tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_7x7()
488 wsptr[7*1] = (int) RIGHT_SHIFT(tmp11 + tmp1, CONST_BITS-PASS1_BITS); in jpeg_idct_7x7()
489 wsptr[7*5] = (int) RIGHT_SHIFT(tmp11 - tmp1, CONST_BITS-PASS1_BITS); in jpeg_idct_7x7()
490 wsptr[7*2] = (int) RIGHT_SHIFT(tmp12 + tmp2, CONST_BITS-PASS1_BITS); in jpeg_idct_7x7()
491 wsptr[7*4] = (int) RIGHT_SHIFT(tmp12 - tmp2, CONST_BITS-PASS1_BITS); in jpeg_idct_7x7()
492 wsptr[7*3] = (int) RIGHT_SHIFT(tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_7x7()
497 wsptr = workspace; in jpeg_idct_7x7()
504 tmp13 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_7x7()
507 z1 = (INT32) wsptr[2]; in jpeg_idct_7x7()
508 z2 = (INT32) wsptr[4]; in jpeg_idct_7x7()
509 z3 = (INT32) wsptr[6]; in jpeg_idct_7x7()
523 z1 = (INT32) wsptr[1]; in jpeg_idct_7x7()
524 z2 = (INT32) wsptr[3]; in jpeg_idct_7x7()
525 z3 = (INT32) wsptr[5]; in jpeg_idct_7x7()
561 wsptr += 7; /* advance pointer to next row */ in jpeg_idct_7x7()
583 int * wsptr; in jpeg_idct_6x6() local
594 wsptr = workspace; in jpeg_idct_6x6()
595 for (ctr = 0; ctr < 6; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_6x6()
623 wsptr[6*0] = (int) RIGHT_SHIFT(tmp10 + tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_6x6()
624 wsptr[6*5] = (int) RIGHT_SHIFT(tmp10 - tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_6x6()
625 wsptr[6*1] = (int) (tmp11 + tmp1); in jpeg_idct_6x6()
626 wsptr[6*4] = (int) (tmp11 - tmp1); in jpeg_idct_6x6()
627 wsptr[6*2] = (int) RIGHT_SHIFT(tmp12 + tmp2, CONST_BITS-PASS1_BITS); in jpeg_idct_6x6()
628 wsptr[6*3] = (int) RIGHT_SHIFT(tmp12 - tmp2, CONST_BITS-PASS1_BITS); in jpeg_idct_6x6()
633 wsptr = workspace; in jpeg_idct_6x6()
640 tmp0 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_6x6()
642 tmp2 = (INT32) wsptr[4]; in jpeg_idct_6x6()
646 tmp10 = (INT32) wsptr[2]; in jpeg_idct_6x6()
653 z1 = (INT32) wsptr[1]; in jpeg_idct_6x6()
654 z2 = (INT32) wsptr[3]; in jpeg_idct_6x6()
655 z3 = (INT32) wsptr[5]; in jpeg_idct_6x6()
682 wsptr += 6; /* advance pointer to next row */ in jpeg_idct_6x6()
704 int * wsptr; in jpeg_idct_5x5() local
715 wsptr = workspace; in jpeg_idct_5x5()
716 for (ctr = 0; ctr < 5; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_5x5()
743 wsptr[5*0] = (int) RIGHT_SHIFT(tmp10 + tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_5x5()
744 wsptr[5*4] = (int) RIGHT_SHIFT(tmp10 - tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_5x5()
745 wsptr[5*1] = (int) RIGHT_SHIFT(tmp11 + tmp1, CONST_BITS-PASS1_BITS); in jpeg_idct_5x5()
746 wsptr[5*3] = (int) RIGHT_SHIFT(tmp11 - tmp1, CONST_BITS-PASS1_BITS); in jpeg_idct_5x5()
747 wsptr[5*2] = (int) RIGHT_SHIFT(tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_5x5()
752 wsptr = workspace; in jpeg_idct_5x5()
759 tmp12 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_5x5()
761 tmp0 = (INT32) wsptr[2]; in jpeg_idct_5x5()
762 tmp1 = (INT32) wsptr[4]; in jpeg_idct_5x5()
772 z2 = (INT32) wsptr[1]; in jpeg_idct_5x5()
773 z3 = (INT32) wsptr[3]; in jpeg_idct_5x5()
797 wsptr += 5; /* advance pointer to next row */ in jpeg_idct_5x5()
818 int * wsptr; in jpeg_idct_3x3() local
829 wsptr = workspace; in jpeg_idct_3x3()
830 for (ctr = 0; ctr < 3; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_3x3()
849 wsptr[3*0] = (int) RIGHT_SHIFT(tmp10 + tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_3x3()
850 wsptr[3*2] = (int) RIGHT_SHIFT(tmp10 - tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_3x3()
851 wsptr[3*1] = (int) RIGHT_SHIFT(tmp2, CONST_BITS-PASS1_BITS); in jpeg_idct_3x3()
856 wsptr = workspace; in jpeg_idct_3x3()
863 tmp0 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_3x3()
865 tmp2 = (INT32) wsptr[2]; in jpeg_idct_3x3()
872 tmp12 = (INT32) wsptr[1]; in jpeg_idct_3x3()
887 wsptr += 3; /* advance pointer to next row */ in jpeg_idct_3x3()
909 int * wsptr; in jpeg_idct_9x9() local
920 wsptr = workspace; in jpeg_idct_9x9()
921 for (ctr = 0; ctr < 8; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_9x9()
968 wsptr[8*0] = (int) RIGHT_SHIFT(tmp10 + tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_9x9()
969 wsptr[8*8] = (int) RIGHT_SHIFT(tmp10 - tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_9x9()
970 wsptr[8*1] = (int) RIGHT_SHIFT(tmp11 + tmp1, CONST_BITS-PASS1_BITS); in jpeg_idct_9x9()
971 wsptr[8*7] = (int) RIGHT_SHIFT(tmp11 - tmp1, CONST_BITS-PASS1_BITS); in jpeg_idct_9x9()
972 wsptr[8*2] = (int) RIGHT_SHIFT(tmp12 + tmp2, CONST_BITS-PASS1_BITS); in jpeg_idct_9x9()
973 wsptr[8*6] = (int) RIGHT_SHIFT(tmp12 - tmp2, CONST_BITS-PASS1_BITS); in jpeg_idct_9x9()
974 wsptr[8*3] = (int) RIGHT_SHIFT(tmp13 + tmp3, CONST_BITS-PASS1_BITS); in jpeg_idct_9x9()
975 wsptr[8*5] = (int) RIGHT_SHIFT(tmp13 - tmp3, CONST_BITS-PASS1_BITS); in jpeg_idct_9x9()
976 wsptr[8*4] = (int) RIGHT_SHIFT(tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_9x9()
981 wsptr = workspace; in jpeg_idct_9x9()
988 tmp0 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_9x9()
991 z1 = (INT32) wsptr[2]; in jpeg_idct_9x9()
992 z2 = (INT32) wsptr[4]; in jpeg_idct_9x9()
993 z3 = (INT32) wsptr[6]; in jpeg_idct_9x9()
1013 z1 = (INT32) wsptr[1]; in jpeg_idct_9x9()
1014 z2 = (INT32) wsptr[3]; in jpeg_idct_9x9()
1015 z3 = (INT32) wsptr[5]; in jpeg_idct_9x9()
1016 z4 = (INT32) wsptr[7]; in jpeg_idct_9x9()
1058 wsptr += 8; /* advance pointer to next row */ in jpeg_idct_9x9()
1081 int * wsptr; in jpeg_idct_10x10() local
1092 wsptr = workspace; in jpeg_idct_10x10()
1093 for (ctr = 0; ctr < 8; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_10x10()
1150 wsptr[8*0] = (int) RIGHT_SHIFT(tmp20 + tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_10x10()
1151 wsptr[8*9] = (int) RIGHT_SHIFT(tmp20 - tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_10x10()
1152 wsptr[8*1] = (int) RIGHT_SHIFT(tmp21 + tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_10x10()
1153 wsptr[8*8] = (int) RIGHT_SHIFT(tmp21 - tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_10x10()
1154 wsptr[8*2] = (int) (tmp22 + tmp12); in jpeg_idct_10x10()
1155 wsptr[8*7] = (int) (tmp22 - tmp12); in jpeg_idct_10x10()
1156 wsptr[8*3] = (int) RIGHT_SHIFT(tmp23 + tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_10x10()
1157 wsptr[8*6] = (int) RIGHT_SHIFT(tmp23 - tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_10x10()
1158 wsptr[8*4] = (int) RIGHT_SHIFT(tmp24 + tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_10x10()
1159 wsptr[8*5] = (int) RIGHT_SHIFT(tmp24 - tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_10x10()
1164 wsptr = workspace; in jpeg_idct_10x10()
1171 z3 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_10x10()
1173 z4 = (INT32) wsptr[4]; in jpeg_idct_10x10()
1181 z2 = (INT32) wsptr[2]; in jpeg_idct_10x10()
1182 z3 = (INT32) wsptr[6]; in jpeg_idct_10x10()
1195 z1 = (INT32) wsptr[1]; in jpeg_idct_10x10()
1196 z2 = (INT32) wsptr[3]; in jpeg_idct_10x10()
1197 z3 = (INT32) wsptr[5]; in jpeg_idct_10x10()
1199 z4 = (INT32) wsptr[7]; in jpeg_idct_10x10()
1253 wsptr += 8; /* advance pointer to next row */ in jpeg_idct_10x10()
1276 int * wsptr; in jpeg_idct_11x11() local
1287 wsptr = workspace; in jpeg_idct_11x11()
1288 for (ctr = 0; ctr < 8; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_11x11()
1342 wsptr[8*0] = (int) RIGHT_SHIFT(tmp20 + tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_11x11()
1343 wsptr[8*10] = (int) RIGHT_SHIFT(tmp20 - tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_11x11()
1344 wsptr[8*1] = (int) RIGHT_SHIFT(tmp21 + tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_11x11()
1345 wsptr[8*9] = (int) RIGHT_SHIFT(tmp21 - tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_11x11()
1346 wsptr[8*2] = (int) RIGHT_SHIFT(tmp22 + tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_11x11()
1347 wsptr[8*8] = (int) RIGHT_SHIFT(tmp22 - tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_11x11()
1348 wsptr[8*3] = (int) RIGHT_SHIFT(tmp23 + tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_11x11()
1349 wsptr[8*7] = (int) RIGHT_SHIFT(tmp23 - tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_11x11()
1350 wsptr[8*4] = (int) RIGHT_SHIFT(tmp24 + tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_11x11()
1351 wsptr[8*6] = (int) RIGHT_SHIFT(tmp24 - tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_11x11()
1352 wsptr[8*5] = (int) RIGHT_SHIFT(tmp25, CONST_BITS-PASS1_BITS); in jpeg_idct_11x11()
1357 wsptr = workspace; in jpeg_idct_11x11()
1364 tmp10 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_11x11()
1367 z1 = (INT32) wsptr[2]; in jpeg_idct_11x11()
1368 z2 = (INT32) wsptr[4]; in jpeg_idct_11x11()
1369 z3 = (INT32) wsptr[6]; in jpeg_idct_11x11()
1389 z1 = (INT32) wsptr[1]; in jpeg_idct_11x11()
1390 z2 = (INT32) wsptr[3]; in jpeg_idct_11x11()
1391 z3 = (INT32) wsptr[5]; in jpeg_idct_11x11()
1392 z4 = (INT32) wsptr[7]; in jpeg_idct_11x11()
1447 wsptr += 8; /* advance pointer to next row */ in jpeg_idct_11x11()
1470 int * wsptr; in jpeg_idct_12x12() local
1481 wsptr = workspace; in jpeg_idct_12x12()
1482 for (ctr = 0; ctr < 8; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_12x12()
1545 wsptr[8*0] = (int) RIGHT_SHIFT(tmp20 + tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1546 wsptr[8*11] = (int) RIGHT_SHIFT(tmp20 - tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1547 wsptr[8*1] = (int) RIGHT_SHIFT(tmp21 + tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1548 wsptr[8*10] = (int) RIGHT_SHIFT(tmp21 - tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1549 wsptr[8*2] = (int) RIGHT_SHIFT(tmp22 + tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1550 wsptr[8*9] = (int) RIGHT_SHIFT(tmp22 - tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1551 wsptr[8*3] = (int) RIGHT_SHIFT(tmp23 + tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1552 wsptr[8*8] = (int) RIGHT_SHIFT(tmp23 - tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1553 wsptr[8*4] = (int) RIGHT_SHIFT(tmp24 + tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1554 wsptr[8*7] = (int) RIGHT_SHIFT(tmp24 - tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1555 wsptr[8*5] = (int) RIGHT_SHIFT(tmp25 + tmp15, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1556 wsptr[8*6] = (int) RIGHT_SHIFT(tmp25 - tmp15, CONST_BITS-PASS1_BITS); in jpeg_idct_12x12()
1561 wsptr = workspace; in jpeg_idct_12x12()
1568 z3 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_12x12()
1571 z4 = (INT32) wsptr[4]; in jpeg_idct_12x12()
1577 z1 = (INT32) wsptr[2]; in jpeg_idct_12x12()
1580 z2 = (INT32) wsptr[6]; in jpeg_idct_12x12()
1600 z1 = (INT32) wsptr[1]; in jpeg_idct_12x12()
1601 z2 = (INT32) wsptr[3]; in jpeg_idct_12x12()
1602 z3 = (INT32) wsptr[5]; in jpeg_idct_12x12()
1603 z4 = (INT32) wsptr[7]; in jpeg_idct_12x12()
1663 wsptr += 8; /* advance pointer to next row */ in jpeg_idct_12x12()
1686 int * wsptr; in jpeg_idct_13x13() local
1697 wsptr = workspace; in jpeg_idct_13x13()
1698 for (ctr = 0; ctr < 8; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_13x13()
1765 wsptr[8*0] = (int) RIGHT_SHIFT(tmp20 + tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1766 wsptr[8*12] = (int) RIGHT_SHIFT(tmp20 - tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1767 wsptr[8*1] = (int) RIGHT_SHIFT(tmp21 + tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1768 wsptr[8*11] = (int) RIGHT_SHIFT(tmp21 - tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1769 wsptr[8*2] = (int) RIGHT_SHIFT(tmp22 + tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1770 wsptr[8*10] = (int) RIGHT_SHIFT(tmp22 - tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1771 wsptr[8*3] = (int) RIGHT_SHIFT(tmp23 + tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1772 wsptr[8*9] = (int) RIGHT_SHIFT(tmp23 - tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1773 wsptr[8*4] = (int) RIGHT_SHIFT(tmp24 + tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1774 wsptr[8*8] = (int) RIGHT_SHIFT(tmp24 - tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1775 wsptr[8*5] = (int) RIGHT_SHIFT(tmp25 + tmp15, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1776 wsptr[8*7] = (int) RIGHT_SHIFT(tmp25 - tmp15, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1777 wsptr[8*6] = (int) RIGHT_SHIFT(tmp26, CONST_BITS-PASS1_BITS); in jpeg_idct_13x13()
1782 wsptr = workspace; in jpeg_idct_13x13()
1789 z1 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_13x13()
1792 z2 = (INT32) wsptr[2]; in jpeg_idct_13x13()
1793 z3 = (INT32) wsptr[4]; in jpeg_idct_13x13()
1794 z4 = (INT32) wsptr[6]; in jpeg_idct_13x13()
1821 z1 = (INT32) wsptr[1]; in jpeg_idct_13x13()
1822 z2 = (INT32) wsptr[3]; in jpeg_idct_13x13()
1823 z3 = (INT32) wsptr[5]; in jpeg_idct_13x13()
1824 z4 = (INT32) wsptr[7]; in jpeg_idct_13x13()
1891 wsptr += 8; /* advance pointer to next row */ in jpeg_idct_13x13()
1914 int * wsptr; in jpeg_idct_14x14() local
1925 wsptr = workspace; in jpeg_idct_14x14()
1926 for (ctr = 0; ctr < 8; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_14x14()
1991 wsptr[8*0] = (int) RIGHT_SHIFT(tmp20 + tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
1992 wsptr[8*13] = (int) RIGHT_SHIFT(tmp20 - tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
1993 wsptr[8*1] = (int) RIGHT_SHIFT(tmp21 + tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
1994 wsptr[8*12] = (int) RIGHT_SHIFT(tmp21 - tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
1995 wsptr[8*2] = (int) RIGHT_SHIFT(tmp22 + tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
1996 wsptr[8*11] = (int) RIGHT_SHIFT(tmp22 - tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
1997 wsptr[8*3] = (int) (tmp23 + tmp13); in jpeg_idct_14x14()
1998 wsptr[8*10] = (int) (tmp23 - tmp13); in jpeg_idct_14x14()
1999 wsptr[8*4] = (int) RIGHT_SHIFT(tmp24 + tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
2000 wsptr[8*9] = (int) RIGHT_SHIFT(tmp24 - tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
2001 wsptr[8*5] = (int) RIGHT_SHIFT(tmp25 + tmp15, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
2002 wsptr[8*8] = (int) RIGHT_SHIFT(tmp25 - tmp15, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
2003 wsptr[8*6] = (int) RIGHT_SHIFT(tmp26 + tmp16, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
2004 wsptr[8*7] = (int) RIGHT_SHIFT(tmp26 - tmp16, CONST_BITS-PASS1_BITS); in jpeg_idct_14x14()
2009 wsptr = workspace; in jpeg_idct_14x14()
2016 z1 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_14x14()
2018 z4 = (INT32) wsptr[4]; in jpeg_idct_14x14()
2029 z1 = (INT32) wsptr[2]; in jpeg_idct_14x14()
2030 z2 = (INT32) wsptr[6]; in jpeg_idct_14x14()
2048 z1 = (INT32) wsptr[1]; in jpeg_idct_14x14()
2049 z2 = (INT32) wsptr[3]; in jpeg_idct_14x14()
2050 z3 = (INT32) wsptr[5]; in jpeg_idct_14x14()
2051 z4 = (INT32) wsptr[7]; in jpeg_idct_14x14()
2117 wsptr += 8; /* advance pointer to next row */ in jpeg_idct_14x14()
2140 int * wsptr; in jpeg_idct_15x15() local
2151 wsptr = workspace; in jpeg_idct_15x15()
2152 for (ctr = 0; ctr < 8; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_15x15()
2222 wsptr[8*0] = (int) RIGHT_SHIFT(tmp20 + tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2223 wsptr[8*14] = (int) RIGHT_SHIFT(tmp20 - tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2224 wsptr[8*1] = (int) RIGHT_SHIFT(tmp21 + tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2225 wsptr[8*13] = (int) RIGHT_SHIFT(tmp21 - tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2226 wsptr[8*2] = (int) RIGHT_SHIFT(tmp22 + tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2227 wsptr[8*12] = (int) RIGHT_SHIFT(tmp22 - tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2228 wsptr[8*3] = (int) RIGHT_SHIFT(tmp23 + tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2229 wsptr[8*11] = (int) RIGHT_SHIFT(tmp23 - tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2230 wsptr[8*4] = (int) RIGHT_SHIFT(tmp24 + tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2231 wsptr[8*10] = (int) RIGHT_SHIFT(tmp24 - tmp14, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2232 wsptr[8*5] = (int) RIGHT_SHIFT(tmp25 + tmp15, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2233 wsptr[8*9] = (int) RIGHT_SHIFT(tmp25 - tmp15, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2234 wsptr[8*6] = (int) RIGHT_SHIFT(tmp26 + tmp16, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2235 wsptr[8*8] = (int) RIGHT_SHIFT(tmp26 - tmp16, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2236 wsptr[8*7] = (int) RIGHT_SHIFT(tmp27, CONST_BITS-PASS1_BITS); in jpeg_idct_15x15()
2241 wsptr = workspace; in jpeg_idct_15x15()
2248 z1 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_15x15()
2251 z2 = (INT32) wsptr[2]; in jpeg_idct_15x15()
2252 z3 = (INT32) wsptr[4]; in jpeg_idct_15x15()
2253 z4 = (INT32) wsptr[6]; in jpeg_idct_15x15()
2288 z1 = (INT32) wsptr[1]; in jpeg_idct_15x15()
2289 z2 = (INT32) wsptr[3]; in jpeg_idct_15x15()
2290 z4 = (INT32) wsptr[5]; in jpeg_idct_15x15()
2292 z4 = (INT32) wsptr[7]; in jpeg_idct_15x15()
2359 wsptr += 8; /* advance pointer to next row */ in jpeg_idct_15x15()
2382 int * wsptr; in jpeg_idct_16x16() local
2393 wsptr = workspace; in jpeg_idct_16x16()
2394 for (ctr = 0; ctr < 8; ctr++, inptr++, quantptr++, wsptr++) { in jpeg_idct_16x16()
2472 wsptr[8*0] = (int) RIGHT_SHIFT(tmp20 + tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2473 wsptr[8*15] = (int) RIGHT_SHIFT(tmp20 - tmp0, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2474 wsptr[8*1] = (int) RIGHT_SHIFT(tmp21 + tmp1, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2475 wsptr[8*14] = (int) RIGHT_SHIFT(tmp21 - tmp1, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2476 wsptr[8*2] = (int) RIGHT_SHIFT(tmp22 + tmp2, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2477 wsptr[8*13] = (int) RIGHT_SHIFT(tmp22 - tmp2, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2478 wsptr[8*3] = (int) RIGHT_SHIFT(tmp23 + tmp3, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2479 wsptr[8*12] = (int) RIGHT_SHIFT(tmp23 - tmp3, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2480 wsptr[8*4] = (int) RIGHT_SHIFT(tmp24 + tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2481 wsptr[8*11] = (int) RIGHT_SHIFT(tmp24 - tmp10, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2482 wsptr[8*5] = (int) RIGHT_SHIFT(tmp25 + tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2483 wsptr[8*10] = (int) RIGHT_SHIFT(tmp25 - tmp11, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2484 wsptr[8*6] = (int) RIGHT_SHIFT(tmp26 + tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2485 wsptr[8*9] = (int) RIGHT_SHIFT(tmp26 - tmp12, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2486 wsptr[8*7] = (int) RIGHT_SHIFT(tmp27 + tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2487 wsptr[8*8] = (int) RIGHT_SHIFT(tmp27 - tmp13, CONST_BITS-PASS1_BITS); in jpeg_idct_16x16()
2492 wsptr = workspace; in jpeg_idct_16x16()
2499 tmp0 = (INT32) wsptr[0] + (ONE << (PASS1_BITS+2)); in jpeg_idct_16x16()
2502 z1 = (INT32) wsptr[4]; in jpeg_idct_16x16()
2511 z1 = (INT32) wsptr[2]; in jpeg_idct_16x16()
2512 z2 = (INT32) wsptr[6]; in jpeg_idct_16x16()
2533 z1 = (INT32) wsptr[1]; in jpeg_idct_16x16()
2534 z2 = (INT32) wsptr[3]; in jpeg_idct_16x16()
2535 z3 = (INT32) wsptr[5]; in jpeg_idct_16x16()
2536 z4 = (INT32) wsptr[7]; in jpeg_idct_16x16()
2621 wsptr += 8; /* advance pointer to next row */ in jpeg_idct_16x16()