Searched defs:tmp10 (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jdk/src/share/native/sun/awt/image/jpeg/
H A Djfdctflt.c66 FAST_FLOAT tmp10, tmp11, tmp12, tmp13; local
86 tmp10 = tmp0 + tmp3; /* phase 2 */
91 dataptr[0] = tmp10 + tmp11; /* phase 3 */
92 dataptr[4] = tmp10 - tmp11;
100 tmp10 = tmp4 + tmp5; /* phase 2 */
105 z5 = (tmp10 - tmp12) * ((FAST_FLOAT) 0.382683433); /* c6 */
106 z2 = ((FAST_FLOAT) 0.541196100) * tmp10 + z5; /* c2-c6 */
136 tmp10 = tmp0 + tmp3; /* phase 2 */
141 dataptr[DCTSIZE*0] = tmp10 + tmp11; /* phase 3 */
142 dataptr[DCTSIZE*4] = tmp10
[all...]
H A Djfdctfst.c121 DCTELEM tmp10, tmp11, tmp12, tmp13; local
142 tmp10 = tmp0 + tmp3; /* phase 2 */
147 dataptr[0] = tmp10 + tmp11; /* phase 3 */
148 dataptr[4] = tmp10 - tmp11;
156 tmp10 = tmp4 + tmp5; /* phase 2 */
161 z5 = MULTIPLY(tmp10 - tmp12, FIX_0_382683433); /* c6 */
162 z2 = MULTIPLY(tmp10, FIX_0_541196100) + z5; /* c2-c6 */
192 tmp10 = tmp0 + tmp3; /* phase 2 */
197 dataptr[DCTSIZE*0] = tmp10 + tmp11; /* phase 3 */
198 dataptr[DCTSIZE*4] = tmp10
[all...]
H A Djfdctint.c147 INT32 tmp10, tmp11, tmp12, tmp13; local
172 tmp10 = tmp0 + tmp3;
177 dataptr[0] = (DCTELEM) ((tmp10 + tmp11) << PASS1_BITS);
178 dataptr[4] = (DCTELEM) ((tmp10 - tmp11) << PASS1_BITS);
237 tmp10 = tmp0 + tmp3;
242 dataptr[DCTSIZE*0] = (DCTELEM) DESCALE(tmp10 + tmp11, PASS1_BITS);
243 dataptr[DCTSIZE*4] = (DCTELEM) DESCALE(tmp10 - tmp11, PASS1_BITS);
H A Djidctflt.c77 FAST_FLOAT tmp10, tmp11, tmp12, tmp13; local
132 tmp10 = tmp0 + tmp2; /* phase 3 */
138 tmp0 = tmp10 + tmp13; /* phase 2 */
139 tmp3 = tmp10 - tmp13;
159 tmp10 = ((FAST_FLOAT) 1.082392200) * z12 - z5; /* 2*(c2-c6) */
164 tmp4 = tmp10 + tmp5;
194 tmp10 = wsptr[0] + wsptr[4];
200 tmp0 = tmp10 + tmp13;
201 tmp3 = tmp10 - tmp13;
216 tmp10
[all...]
H A Djidctfst.c177 DCTELEM tmp10, tmp11, tmp12, tmp13; local
233 tmp10 = tmp0 + tmp2; /* phase 3 */
239 tmp0 = tmp10 + tmp13; /* phase 2 */
240 tmp3 = tmp10 - tmp13;
260 tmp10 = MULTIPLY(z12, FIX_1_082392200) - z5; /* 2*(c2-c6) */
265 tmp4 = tmp10 + tmp5;
319 tmp10 = ((DCTELEM) wsptr[0] + (DCTELEM) wsptr[4]);
326 tmp0 = tmp10 + tmp13;
327 tmp3 = tmp10 - tmp13;
342 tmp10
[all...]
H A Djidctint.c157 INT32 tmp10, tmp11, tmp12, tmp13; local
223 tmp10 = tmp0 + tmp3;
260 /* Final output stage: inputs are tmp10..tmp13, tmp0..tmp3 */
262 wsptr[DCTSIZE*0] = (int) DESCALE(tmp10 + tmp3, CONST_BITS-PASS1_BITS);
263 wsptr[DCTSIZE*7] = (int) DESCALE(tmp10 - tmp3, CONST_BITS-PASS1_BITS);
325 tmp10 = tmp0 + tmp3;
362 /* Final output stage: inputs are tmp10..tmp13, tmp0..tmp3 */
364 outptr[0] = range_limit[(int) DESCALE(tmp10 + tmp3,
367 outptr[7] = range_limit[(int) DESCALE(tmp10 - tmp3,
H A Djidctred.c126 INT32 tmp0, tmp2, tmp10, tmp12; local
170 tmp10 = tmp0 + tmp2;
192 wsptr[DCTSIZE*0] = (int) DESCALE(tmp10 + tmp2, CONST_BITS-PASS1_BITS+1);
193 wsptr[DCTSIZE*3] = (int) DESCALE(tmp10 - tmp2, CONST_BITS-PASS1_BITS+1);
229 tmp10 = tmp0 + tmp2;
251 outptr[0] = range_limit[(int) DESCALE(tmp10 + tmp2,
254 outptr[3] = range_limit[(int) DESCALE(tmp10 - tmp2,
279 INT32 tmp0, tmp10, z1; local
312 tmp10 = z1 << (CONST_BITS+2);
327 wsptr[DCTSIZE*0] = (int) DESCALE(tmp10
[all...]

Completed in 36 milliseconds