Home
last modified time | relevance | path

Searched refs:tmp0 (Results 1 – 25 of 31) sorted by relevance

12

/utopia/UTPA2-700.0.x/modules/ojpd_vdec_v2/api/jpeg_ex/cmodel/src/
H A Didct.c147 S32 tmp0, tmp1, tmp2, tmp3; in idct() local
186 tmp0 = ( ( S32 )dataptr[0] + ( S32 )dataptr[4] ) << CONST_BITS; in idct()
189 tmp10 = tmp0 + tmp3; in idct()
190 tmp13 = tmp0 - tmp3; in idct()
194 tmp0 = ( S32 )dataptr[7]; in idct()
199 z1 = tmp0 + tmp3; in idct()
201 z3 = tmp0 + tmp2; in idct()
205 tmp0 = MULTIPLY( tmp0, FIX_0_298631336 ); in idct()
217 tmp0 += z1 + z3; in idct()
228 wsptr[3] = ( S16 )DESCALE( tmp13 + tmp0, CONST_BITS - PASS1_BITS ); in idct()
[all …]
H A Djidctint.c247 INT32 tmp0, tmp1, tmp2, tmp3; variable
312 tmp0 = ( z2 + z3 ) << CONST_BITS;
315 tmp10 = tmp0 + tmp3;
316 tmp13 = tmp0 - tmp3;
324 tmp0 = DEQUANTIZE( inptr[DCTSIZE * 7], quantptr[DCTSIZE * 7] );
329 z1 = tmp0 + tmp3;
331 z3 = tmp0 + tmp2;
335 tmp0 = MULTIPLY( tmp0, FIX_0_298631336 ); /* sqrt(2) * (-c1+c3+c5-c7) */
347 tmp0 += z1 + z3;
360 wsptr[DCTSIZE * 3] = ( int )DESCALE( tmp13 + tmp0, CONST_BITS - PASS1_BITS );
[all …]
H A Djidctfst.c267 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; in jpeg_idct_ifast() local
322 tmp0 = DEQUANTIZE( inptr[DCTSIZE * 0], quantptr[DCTSIZE * 0] ); in jpeg_idct_ifast()
327 tmp10 = tmp0 + tmp2; /* phase 3 */ in jpeg_idct_ifast()
328 tmp11 = tmp0 - tmp2; in jpeg_idct_ifast()
333 tmp0 = tmp10 + tmp13; /* phase 2 */ in jpeg_idct_ifast()
361 wsptr[DCTSIZE * 0] = ( int )( tmp0 + tmp7 ); in jpeg_idct_ifast()
362 wsptr[DCTSIZE * 7] = ( int )( tmp0 - tmp7 ); in jpeg_idct_ifast()
422 tmp0 = tmp10 + tmp13; in jpeg_idct_ifast()
464 i = IDESCALE( tmp0 + tmp7, PASS1_BITS + 3 ) + 128; in jpeg_idct_ifast()
467 i = IDESCALE( tmp0 - tmp7, PASS1_BITS + 3 ) + 128; in jpeg_idct_ifast()
/utopia/UTPA2-700.0.x/modules/ojpd_vdec_v1/api/jpeg/cmodel/src/
H A Didct.c147 S32 tmp0, tmp1, tmp2, tmp3; in idct() local
186 tmp0 = ( ( S32 )dataptr[0] + ( S32 )dataptr[4] ) << CONST_BITS; in idct()
189 tmp10 = tmp0 + tmp3; in idct()
190 tmp13 = tmp0 - tmp3; in idct()
194 tmp0 = ( S32 )dataptr[7]; in idct()
199 z1 = tmp0 + tmp3; in idct()
201 z3 = tmp0 + tmp2; in idct()
205 tmp0 = MULTIPLY( tmp0, FIX_0_298631336 ); in idct()
217 tmp0 += z1 + z3; in idct()
228 wsptr[3] = ( S16 )DESCALE( tmp13 + tmp0, CONST_BITS - PASS1_BITS ); in idct()
[all …]
H A Djidctint.c247 INT32 tmp0, tmp1, tmp2, tmp3; variable
312 tmp0 = ( z2 + z3 ) << CONST_BITS;
315 tmp10 = tmp0 + tmp3;
316 tmp13 = tmp0 - tmp3;
324 tmp0 = DEQUANTIZE( inptr[DCTSIZE * 7], quantptr[DCTSIZE * 7] );
329 z1 = tmp0 + tmp3;
331 z3 = tmp0 + tmp2;
335 tmp0 = MULTIPLY( tmp0, FIX_0_298631336 ); /* sqrt(2) * (-c1+c3+c5-c7) */
347 tmp0 += z1 + z3;
360 wsptr[DCTSIZE * 3] = ( int )DESCALE( tmp13 + tmp0, CONST_BITS - PASS1_BITS );
[all …]
H A Djidctfst.c267 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; in jpeg_idct_ifast() local
322 tmp0 = DEQUANTIZE( inptr[DCTSIZE * 0], quantptr[DCTSIZE * 0] ); in jpeg_idct_ifast()
327 tmp10 = tmp0 + tmp2; /* phase 3 */ in jpeg_idct_ifast()
328 tmp11 = tmp0 - tmp2; in jpeg_idct_ifast()
333 tmp0 = tmp10 + tmp13; /* phase 2 */ in jpeg_idct_ifast()
361 wsptr[DCTSIZE * 0] = ( int )( tmp0 + tmp7 ); in jpeg_idct_ifast()
362 wsptr[DCTSIZE * 7] = ( int )( tmp0 - tmp7 ); in jpeg_idct_ifast()
422 tmp0 = tmp10 + tmp13; in jpeg_idct_ifast()
464 i = IDESCALE( tmp0 + tmp7, PASS1_BITS + 3 ) + 128; in jpeg_idct_ifast()
467 i = IDESCALE( tmp0 - tmp7, PASS1_BITS + 3 ) + 128; in jpeg_idct_ifast()
/utopia/UTPA2-700.0.x/modules/vdec_v2/hal/mustang/vpu_ex/
H A Dms_decompress.c148 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
164 _ReadBit(tmp0); in ms_VDECDecompress()
165 if (tmp0 != UNCODED) in ms_VDECDecompress()
167 _ReadChar(tmp0); in ms_VDECDecompress()
169 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
192 _ReadChar(tmp0); in ms_VDECDecompress()
193 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/k6lite/vpu_v3/
H A Dms_decompress.c153 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
169 _ReadBit(tmp0); in ms_VDECDecompress()
170 if (tmp0 != UNCODED) in ms_VDECDecompress()
172 _ReadChar(tmp0); in ms_VDECDecompress()
174 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
197 _ReadChar(tmp0); in ms_VDECDecompress()
198 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/manhattan/vpu_v3/
H A Dms_decompress.c153 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
169 _ReadBit(tmp0); in ms_VDECDecompress()
170 if (tmp0 != UNCODED) in ms_VDECDecompress()
172 _ReadChar(tmp0); in ms_VDECDecompress()
174 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
197 _ReadChar(tmp0); in ms_VDECDecompress()
198 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v2/hal/manhattan/vpu_ex/
H A Dms_decompress.c148 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
164 _ReadBit(tmp0); in ms_VDECDecompress()
165 if (tmp0 != UNCODED) in ms_VDECDecompress()
167 _ReadChar(tmp0); in ms_VDECDecompress()
169 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
192 _ReadChar(tmp0); in ms_VDECDecompress()
193 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/k6/vpu_v3/
H A Dms_decompress.c153 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
169 _ReadBit(tmp0); in ms_VDECDecompress()
170 if (tmp0 != UNCODED) in ms_VDECDecompress()
172 _ReadChar(tmp0); in ms_VDECDecompress()
174 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
197 _ReadChar(tmp0); in ms_VDECDecompress()
198 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v2/hal/maxim/vpu_ex/
H A Dms_decompress.c148 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
164 _ReadBit(tmp0); in ms_VDECDecompress()
165 if (tmp0 != UNCODED) in ms_VDECDecompress()
167 _ReadChar(tmp0); in ms_VDECDecompress()
169 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
192 _ReadChar(tmp0); in ms_VDECDecompress()
193 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/maldives/vpu_v3/
H A Dms_decompress.c148 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
164 _ReadBit(tmp0); in ms_VDECDecompress()
165 if (tmp0 != UNCODED) in ms_VDECDecompress()
167 _ReadChar(tmp0); in ms_VDECDecompress()
169 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
192 _ReadChar(tmp0); in ms_VDECDecompress()
193 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/mooney/vpu_v3/
H A Dms_decompress.c153 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
169 _ReadBit(tmp0); in ms_VDECDecompress()
170 if (tmp0 != UNCODED) in ms_VDECDecompress()
172 _ReadChar(tmp0); in ms_VDECDecompress()
174 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
197 _ReadChar(tmp0); in ms_VDECDecompress()
198 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/M7621/vpu_v3/
H A Dms_decompress.c153 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
169 _ReadBit(tmp0); in ms_VDECDecompress()
170 if (tmp0 != UNCODED) in ms_VDECDecompress()
172 _ReadChar(tmp0); in ms_VDECDecompress()
174 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
197 _ReadChar(tmp0); in ms_VDECDecompress()
198 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/curry/vpu_v3/
H A Dms_decompress.c153 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
169 _ReadBit(tmp0); in ms_VDECDecompress()
170 if (tmp0 != UNCODED) in ms_VDECDecompress()
172 _ReadChar(tmp0); in ms_VDECDecompress()
174 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
197 _ReadChar(tmp0); in ms_VDECDecompress()
198 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v2/hal/mainz/vpu_ex/
H A Dms_decompress.c148 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
164 _ReadBit(tmp0); in ms_VDECDecompress()
165 if (tmp0 != UNCODED) in ms_VDECDecompress()
167 _ReadChar(tmp0); in ms_VDECDecompress()
169 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
192 _ReadChar(tmp0); in ms_VDECDecompress()
193 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v2/hal/maldives/vpu_ex/
H A Dms_decompress.c148 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
164 _ReadBit(tmp0); in ms_VDECDecompress()
165 if (tmp0 != UNCODED) in ms_VDECDecompress()
167 _ReadChar(tmp0); in ms_VDECDecompress()
169 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
192 _ReadChar(tmp0); in ms_VDECDecompress()
193 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v2/hal/M7621/vpu_ex/
H A Dms_decompress.c148 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
164 _ReadBit(tmp0); in ms_VDECDecompress()
165 if (tmp0 != UNCODED) in ms_VDECDecompress()
167 _ReadChar(tmp0); in ms_VDECDecompress()
169 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
192 _ReadChar(tmp0); in ms_VDECDecompress()
193 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/macan/vpu_v3/
H A Dms_decompress.c148 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
164 _ReadBit(tmp0); in ms_VDECDecompress()
165 if (tmp0 != UNCODED) in ms_VDECDecompress()
167 _ReadChar(tmp0); in ms_VDECDecompress()
169 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
192 _ReadChar(tmp0); in ms_VDECDecompress()
193 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v2/hal/macan/vpu_ex/
H A Dms_decompress.c148 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
164 _ReadBit(tmp0); in ms_VDECDecompress()
165 if (tmp0 != UNCODED) in ms_VDECDecompress()
167 _ReadChar(tmp0); in ms_VDECDecompress()
169 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
192 _ReadChar(tmp0); in ms_VDECDecompress()
193 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/maxim/vpu_v3/
H A Dms_decompress.c153 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
169 _ReadBit(tmp0); in ms_VDECDecompress()
170 if (tmp0 != UNCODED) in ms_VDECDecompress()
172 _ReadChar(tmp0); in ms_VDECDecompress()
174 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
197 _ReadChar(tmp0); in ms_VDECDecompress()
198 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v3/hal/maserati/vpu_v3/
H A Dms_decompress.c153 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
169 _ReadBit(tmp0); in ms_VDECDecompress()
170 if (tmp0 != UNCODED) in ms_VDECDecompress()
172 _ReadChar(tmp0); in ms_VDECDecompress()
174 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
197 _ReadChar(tmp0); in ms_VDECDecompress()
198 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_v2/hal/maserati/vpu_ex/
H A Dms_decompress.c148 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
164 _ReadBit(tmp0); in ms_VDECDecompress()
165 if (tmp0 != UNCODED) in ms_VDECDecompress()
167 _ReadChar(tmp0); in ms_VDECDecompress()
169 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
192 _ReadChar(tmp0); in ms_VDECDecompress()
193 *pOutStream = tmp0; in ms_VDECDecompress()
/utopia/UTPA2-700.0.x/modules/vdec_lite/hal/kano/vpu_lite/
H A Dms_decompress.c153 register MS_U32 tmp0,tmp1; in ms_VDECDecompress() local
169 _ReadBit(tmp0); in ms_VDECDecompress()
170 if (tmp0 != UNCODED) in ms_VDECDecompress()
172 _ReadChar(tmp0); in ms_VDECDecompress()
174 offset = (tmp0 << 8) | tmp1; in ms_VDECDecompress()
197 _ReadChar(tmp0); in ms_VDECDecompress()
198 *pOutStream = tmp0; in ms_VDECDecompress()

12