HomeSort by relevance Sort by last modified time
    Searched defs:tmp0 (Results 26 - 39 of 39) sorted by null

12

  /external/jpeg/
jfdctint.c 142 INT32 tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
155 tmp0 = dataptr[0] + dataptr[7];
168 tmp10 = tmp0 + tmp3;
169 tmp13 = tmp0 - tmp3;
220 tmp0 = dataptr[DCTSIZE*0] + dataptr[DCTSIZE*7];
233 tmp10 = tmp0 + tmp3;
234 tmp13 = tmp0 - tmp3;
jidctfst.c 172 DCTELEM tmp0, tmp1, tmp2, tmp3, tmp4, tmp5, tmp6, tmp7; local
224 tmp0 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
229 tmp10 = tmp0 + tmp2; /* phase 3 */
230 tmp11 = tmp0 - tmp2;
235 tmp0 = tmp10 + tmp13; /* phase 2 */
263 wsptr[DCTSIZE*0] = (int) (tmp0 + tmp7);
264 wsptr[DCTSIZE*7] = (int) (tmp0 - tmp7);
322 tmp0 = tmp10 + tmp13;
347 outptr[0] = range_limit[IDESCALE(tmp0 + tmp7, PASS1_BITS+3)
349 outptr[7] = range_limit[IDESCALE(tmp0 - tmp7, PASS1_BITS+3
    [all...]
jidctint.c 152 INT32 tmp0, tmp1, tmp2, tmp3; local
216 tmp0 = (z2 + z3) << CONST_BITS;
219 tmp10 = tmp0 + tmp3;
220 tmp13 = tmp0 - tmp3;
228 tmp0 = DEQUANTIZE(inptr[DCTSIZE*7], quantptr[DCTSIZE*7]);
233 z1 = tmp0 + tmp3;
235 z3 = tmp0 + tmp2;
239 tmp0 = MULTIPLY(tmp0, FIX_0_298631336); /* sqrt(2) * (-c1+c3+c5-c7) */
251 tmp0 += z1 + z3
    [all...]
jidctred.c 122 INT32 tmp0, tmp2, tmp10, tmp12; local
158 tmp0 = DEQUANTIZE(inptr[DCTSIZE*0], quantptr[DCTSIZE*0]);
159 tmp0 <<= (CONST_BITS+1);
166 tmp10 = tmp0 + tmp2;
167 tmp12 = tmp0 - tmp2;
176 tmp0 = MULTIPLY(z1, - FIX_0_211164243) /* sqrt(2) * (c3-c1) */
190 wsptr[DCTSIZE*1] = (int) DESCALE(tmp12 + tmp0, CONST_BITS-PASS1_BITS+1);
191 wsptr[DCTSIZE*2] = (int) DESCALE(tmp12 - tmp0, CONST_BITS-PASS1_BITS+1);
220 tmp0 = ((INT32) wsptr[0]) << (CONST_BITS+1);
225 tmp10 = tmp0 + tmp2
275 INT32 tmp0, tmp10, z1; local
    [all...]
  /external/opencore/codecs_v2/audio/mp3/dec/src/
pvmp3_dct_16.cpp 154 int32 tmp0; local
177 tmp0 = vec[ 0] + vec[15];
182 itmp_e0 = fxp_mul32_Q32((tmp0 - tmp7), Qfmt_31(0.50979557910416F));
183 tmp7 = (tmp0 + tmp7);
216 tmp0 = (tmp7 + tmp1);
222 vec[ 0] = (tmp0 + tmp7) >> 1;
223 vec[ 8] = fxp_mul32_Q32((tmp0 - tmp7), Qfmt_31(0.70710678118655F));
224 tmp0 = fxp_mul32_Q32((tmp1 - tmp3) << 1, Qfmt_31(0.70710678118655F));
225 vec[ 4] = tmp1 + tmp3 + tmp0;
226 vec[12] = tmp0;
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_wtengine.c 80 EAS_I32 tmp0; local
109 tmp0 = *pInputBuffer++;
115 tmp2 *= tmp0;
127 tmp0 = tmp2 * gainLeft;
129 tmp0 = tmp0 >> NUM_MIXER_GUARD_BITS;
130 tmp1 += tmp0;
137 tmp0 = tmp2 * gainRight;
139 tmp0 = tmp0 >> NUM_MIXER_GUARD_BITS
422 EAS_I32 tmp0; local
566 EAS_I32 tmp0; local
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_wtengine.c 80 EAS_I32 tmp0; local
109 tmp0 = *pInputBuffer++;
115 tmp2 *= tmp0;
127 tmp0 = tmp2 * gainLeft;
129 tmp0 = tmp0 >> NUM_MIXER_GUARD_BITS;
130 tmp1 += tmp0;
137 tmp0 = tmp2 * gainRight;
139 tmp0 = tmp0 >> NUM_MIXER_GUARD_BITS
422 EAS_I32 tmp0; local
566 EAS_I32 tmp0; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/mp3dec/src/
pvmp3_dct_16.cpp 154 int32 tmp0; local
177 tmp0 = vec[ 0] + vec[15];
182 itmp_e0 = fxp_mul32_Q32((tmp0 - tmp7), Qfmt_31(0.50979557910416F));
183 tmp7 = (tmp0 + tmp7);
216 tmp0 = (tmp7 + tmp1);
222 vec[ 0] = (tmp0 + tmp7) >> 1;
223 vec[ 8] = fxp_mul32_Q32((tmp0 - tmp7), Qfmt_31(0.70710678118655F));
224 tmp0 = fxp_mul32_Q32((tmp1 - tmp3) << 1, Qfmt_31(0.70710678118655F));
225 vec[ 4] = tmp1 + tmp3 + tmp0;
226 vec[12] = tmp0;
    [all...]
  /external/opencore/codecs_v2/utilities/colorconvert/src/
ccrgb24torgb16.cpp 210 uint32 rgb, tmp0; local
252 tmp0 = half1 & 0xFC; /* get 6 bits of G1 */
253 tmp0 = (tmp0 << 3) | half2; /* R1 G1 */
254 tmp0 |= (half1 >> 11); /* R1 G1 B1 */
257 tmp0 = (half1 >> 5) & 0x7E0; /* get 6 bits of G0 */
258 rgb = (rgb << 8) | tmp0; /* R0, G0 */
264 tmp0 = half1 & 0xF800; /* get 5 bits of R1 */
266 tmp0 |= half1; /* R1 G1 */
267 tmp0 |= (half2 >> 11); /* R1 G1 B1 *
293 uint32 rgb, tmp0; local
    [all...]
cczoomrotation12.cpp 575 int32 tmp0, tmp1, tmp2; local
616 tmp0 = Y & 0xFF; //Low endian left pixel
617 //tmp0 = pY[src_width];
619 tmp1 = (tmp0 << 16) - Cg;
620 tmp2 = (tmp0 << 16) + Cb;
621 tmp0 = (tmp0 << 16) + Cr;
626 tmp0 += ((left_err_b & 0xFF) << 16); // err_vert[0];
631 tmp0 += ((top_err_l & 0xFF) << 16); //pErr_horz[col];
635 tmp0 = clip[tmp0>>16]
1166 int32 tmp0, tmp1, tmp2; local
1960 int32 tmp0, tmp1, tmp2; local
2911 int32 tmp0, tmp1, tmp2; local
    [all...]
cczoomrotation24.cpp 248 int32 tmp0, tmp1, tmp2, rgb, rgb2; local
301 tmp0 = (Y << 16) & 0xFF0000; //Low endian left pixel
302 tmp1 = tmp0 - Cg;
303 tmp2 = tmp0 + Cb;
304 tmp0 = tmp0 + Cr;
306 tmp0 = clip[tmp0>>16];
310 rgb = tmp0 | (tmp1 << 8); /* r1 & g1 */
316 tmp0 = Y + Cr
519 int32 tmp0, tmp1, tmp2; local
718 int32 tmp0, tmp1, tmp2; local
1037 int32 tmp0, tmp1, tmp2; local
    [all...]
cczoomrotation32.cpp 248 int32 tmp0, tmp1, tmp2; local
302 tmp0 = Y & 0xFF; //Low endian left pixel
304 tmp1 = (tmp0 << 16) - Cg;
305 tmp2 = (tmp0 << 16) + Cb;
306 tmp0 = (tmp0 << 16) + Cr;
308 tmp0 = clip[tmp0>>16];
312 *((uint32 *)(pDst + dst_pitch4)) = tmp0 | (tmp1 << 8) | (tmp2 << 16) ; /* bgr */
314 *((uint32 *)(pDst + dst_pitch4)) = tmp2 | (tmp1 << 8) | (tmp0 << 16); /* rgb *
386 int32 tmp0, tmp1, tmp2; local
529 int32 tmp0, tmp1, tmp2; local
734 int32 tmp0, tmp1, tmp2; local
968 int32 tmp0, tmp1, tmp2; local
1193 int32 tmp0, tmp1, tmp2; local
    [all...]
cczoomrotation16.cpp 300 int32 tmp0, tmp1, tmp2; local
354 tmp0 = (Y & 0xFF); //Low endian left pixel
355 tmp0 += OFFSET_5_0;
357 tmp1 = tmp0 - (Cg >> 16);
358 tmp2 = tmp0 + (Cb >> 16);
359 tmp0 = tmp0 + (Cr >> 16);
361 tmp0 = clip[tmp0];
366 rgb = tmp1 | (tmp0 << 6)
446 int32 tmp0, tmp1, tmp2; local
662 int32 tmp0, tmp1, tmp2; local
798 int32 tmp0, tmp1, tmp2; local
1029 int32 tmp0, tmp1, tmp2; local
2108 int32 tmp0, tmp1, tmp2; local
2409 int32 tmp0, tmp1, tmp2; local
2571 int32 tmp0, tmp1, tmp2; local
2960 int32 tmp0, tmp1, tmp2, temp; local
3882 int32 tmp0, tmp1, tmp2; local
4457 int32 tmp0, tmp1, tmp2; local
5309 int32 tmp0, tmp1, tmp2; local
    [all...]
  /external/openssl/crypto/ec/
ecp_smpl.c 1540 BIGNUM *tmp0, *tmp1; local
    [all...]

Completed in 830 milliseconds

12