Searched refs:tmp2 (Results 26 - 50 of 57) sorted by relevance

123

/frameworks/av/media/libstagefright/codecs/mp3dec/src/
H A Dpvmp3_dct_9.cpp129 int32 tmp2 = vec[6] + vec[2]; local
134 vec[0] = (tmp0 + tmp2 + tmp3) + (tmp1 + vec[4]);
135 vec[6] = ((tmp0 + tmp2 + tmp3) >> 1) - (tmp1 + vec[4]);
142 vec[2] = fxp_mac32_Q32(vec[2], tmp2 << 1, cos_5pi_9);
143 vec[4] = fxp_mac32_Q32(vec[4], tmp2 << 1, cos_8pi_9);
144 vec[8] = fxp_mac32_Q32(vec[8], tmp2 << 1, cos_2pi_9);
H A Dpvmp3_reorder.cpp156 int32 tmp2 = xr[src_line+(sfb_lines)]; local
160 Scratch_mem[freq+1] = tmp2;
177 int32 tmp2 = xr[src_line+(sfb_lines)]; local
181 Scratch_mem[freq+1] = tmp2;
H A Dpvmp3_mdct_6.cpp127 int32 tmp2; local
137 tmp2 = *(pt_vec++);
140 *(pt_vec_o++) = fxp_mul32_Q29(tmp2, *(pt_cos++));
H A Dpvmp3_get_scale_factors.cpp200 int32 tmp2 = tmp1 * tmp4; local
201 uint32 tmp3 = getNbits(pMainData, tmp2);
203 for (; tmp2 > 0; tmp2 -= tmp1)
205 *(ptr++) = (tmp3 << (32 - tmp2)) >> tmp4;
H A Dpvmp3_seek_synch.cpp213 uint16 tmp2 = *(pElem); local
216 val |= (tmp2 >> 5);
/frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
H A Dme_utils.cpp318 Int tmp, tmp2, mask = 0x00FF00FF; local
326 tmp2 = tmp & mask;
328 tmp += tmp2;
331 tmp2 = tmp & mask;
333 tmp += tmp2;
336 tmp2 = tmp & mask;
338 tmp += tmp2;
342 tmp2 = tmp & mask;
344 tmp += tmp2;
348 tmp2
[all...]
H A Ddct.cpp47 Int tmp, tmp2; local
60 tmp2 = *((Int*) pred); /* prediction 4 pixels */
61 k0 = tmp2 & 0xFF;
64 k1 = (tmp2 >> 8) & 0xFF;
67 k2 = (tmp2 >> 16) & 0xFF;
70 k3 = (tmp2 >> 24) & 0xFF;
74 tmp2 = *((Int*)(pred + 4));
75 k4 = tmp2 & 0xFF;
78 k5 = (tmp2 >> 8) & 0xFF;
81 k6 = (tmp2 >> 1
275 Int tmp, tmp2; local
481 Int tmp, tmp2; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p2/src/
H A DomxVCM4P2_MCReconBlock_s.s347 M_LOAD_X pSrc, srcStep, tmp1, tmp2, tmp3, $offset
351 STRD tmp1, tmp2, [pDst], dstStep
353 M_LOAD_X pSrc, srcStep, tmp1, tmp2, tmp3, $offset
382 M_LOAD_XINT pSrc, srcStep, $offset, tmp1, tmp2, tmp3, tmp4
385 M_EXT_XINT $offset, tmp1, tmp2, tmp3, tmp4
387 M_UHADD8R tmp6, tmp2, tmp4, (1-$rndVal), mask
389 M_LOAD_XINT pSrc, srcStep, $offset, tmp1, tmp2, tmp3, tmp4
413 M_LOAD_X pSrc, srcStep, tmp1, tmp2, tmp5, $offset ;// Pre-load
419 M_UHADD8R tmp2, tmp2, tmp
585 tmp2 RN 5 label
[all...]
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Disf_extrapolation.cpp122 int16 coeff, mean, tmp, tmp2, tmp3; local
161 tmp2 = sub_int16(IsfDiff[i], mean);
163 L_tmp = mul_16by16_to_int32(tmp2, tmp3);
171 tmp2 = sub_int16(IsfDiff[i], mean);
173 L_tmp = mul_16by16_to_int32(tmp2, tmp3);
181 tmp2 = sub_int16(IsfDiff[i], mean);
183 L_tmp = mul_16by16_to_int32(tmp2, tmp3);
224 tmp2 = sub_int16(HfIsf[M16k - 2], HfIsf[M - 2]);
226 exp2 = norm_s(tmp2);
230 tmp2 <<
[all...]
H A Dlagconceal.cpp149 int16 i, tmp, tmp2; local
254 tmp2 = *T0 - lastLag;
260 else if ((lastGain > 8192) && (secLastGain > 8192) && ((tmp2 + 10) > 0 && tmp2 < 10))
H A Ddec_gain2_amr_wb.cpp189 int16 tmp2; local
361 tmp2 = pbuf2[1];
366 pbuf2[i - 1] = tmp2;
369 tmp2 = pbuf2[i];
/frameworks/native/libs/utils/
H A DLinearTransform.cpp35 uint64_t tmp1, tmp2; local
51 // tmp2 = U32(val) * N (a 64 bit int)
54 // M = val * N = (tmp2 << 32) + tmp1
55 tmp2 = (val >> 32) * N;
59 // tmp2 = tmp2 + U32(tmp1)
62 tmp2 += tmp1 >> 32;
66 if ((tmp2 >> 32) >= D) {
72 // tmp2 = M[32, 95]
73 // U32(tmp2) <
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dcalc_en.cpp286 Word16 tmp2; /* temporal storage */ local
307 tmp2 = exc[i];
310 s2 = amrnb_fxp_mac_16_by_16bb((Word32) tmp2, (Word32) tmp2, s2); /* Compute ltp excitation energy */
311 s3 = amrnb_fxp_mac_16_by_16bb((Word32) tmp2, (Word32) code[i], s3);/* Compute scalar product */
314 L_temp = L_mult(tmp2, gain_pit, pOverflow);
316 tmp2 = sub(tmp1, pv_round(L_temp, pOverflow), pOverflow);
318 s4 = L_mac(s4, tmp2, tmp2, pOverflow);
H A Dcor_h.cpp282 Word16 tmp2; local
398 tmp2 = ((Word32) * (p_sign1) * *(p_sign2--)) >> 15;
401 *rr2 = ((Word32) tmp1 * tmp2) >> 15;
416 tmp2 = ((Word32) * (p_sign1) * *(p_sign2)) >> 15;
417 *rr1 = ((Word32) tmp1 * tmp2) >> 15;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/arm11_asm/
H A Dh264bsd_interpolate_ver_quarter.s45 tmp2 RN 5 label
140 LDR tmp2, [sp, #0x228] ;// verOffset
141 ADD count, count, tmp2 ;// |xx|partH-1|partW-1|verOffset|
152 LDR tmp2, [ref], width ;// |c4|c3|c2|c1|
161 UXTB16 tmpb, tmp2 ;// |c3|c1|
179 UXTB16 tmpb, tmp2, ROR #8 ;// |c4|c2|
204 ;// tmp2 = |a4|a3|a2|a1|
218 UXTAB16 tmpa, tmpa, tmp2 ;// 16+20(G+M)+A
234 UXTAB16 tmpa, tmpa, tmp2, ROR #8 ;// 16+20(G+M)+A
242 MVNEQ tmp2, tmp
[all...]
H A Dh264bsd_interpolate_ver_half.s46 tmp2 RN 5 label
151 LDR tmp2, [ref], width ;// |c4|c3|c2|c1|
160 UXTB16 tmpb, tmp2 ;// |c3|c1|
178 UXTB16 tmpb, tmp2, ROR #8 ;// |c4|c2|
195 ;// tmp2 = |a4|a3|a2|a1|
209 UXTAB16 tmpa, tmpa, tmp2 ;// 16+20(G+M)+A
225 UXTAB16 tmpa, tmpa, tmp2, ROR #8 ;// 16+20(G+M)+A
232 LDR tmp2, [ref], width
244 ;// tmp2 = |t4|t3|t2|t1|
254 UXTAB16 tmpa, tmpa, tmp2 ;// 1
[all...]
H A Dh264bsd_interpolate_hor_ver_quarter.s51 tmp2 RN 5 label
316 LDR tmp2, [ref], width ;// |c4|c3|c2|c1|
325 UXTB16 tmpb, tmp2 ;// |c3|c1|
343 UXTB16 tmpb, tmp2, ROR #8 ;// |c4|c2|
367 ;// tmp2 = |a4|a3|a2|a1|
381 UXTAB16 tmpa, tmpa, tmp2 ;// 16+20(G+M)+A
397 UXTAB16 tmpa, tmpa, tmp2, ROR #8 ;// 16+20(G+M)+A
404 LDR tmp2, [mb]
406 MVN tmp2, tmp2
[all...]
/frameworks/av/media/libstagefright/colorconversion/
H A DColorConverter.cpp170 signed tmp2 = y2 * 298; local
171 signed b2 = (tmp2 + u_b) / 256;
172 signed g2 = (tmp2 + v_g + u_g) / 256;
173 signed r2 = (tmp2 + v_r) / 256;
258 signed tmp2 = y2 * 298; local
259 signed b2 = (tmp2 + u_b) / 256;
260 signed g2 = (tmp2 + v_g + u_g) / 256;
261 signed r2 = (tmp2 + v_r) / 256;
331 signed tmp2 = y2 * 298; local
332 signed b2 = (tmp2
405 signed tmp2 = y2 * 298; local
475 signed tmp2 = y2 * 298; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_deblocking.c333 i32 tmp1, tmp2; local
337 tmp2 = mb1->totalCoeff[ind2];
343 if (tmp1 || tmp2)
368 i32 tmp1, tmp2, tmp3, tmp4; local
371 tmp2 = mb1->mv[ind2].hor;
375 if ( (ABS(tmp1 - tmp2) >= 4) || (ABS(tmp3 - tmp4) >= 4) ||
427 u32 tmp1, tmp2, tmp3, tmp4; local
430 tmp2 = mb2->totalCoeff[10];
433 if (tmp1 || tmp2)
444 tmp2
494 u32 tmp1, tmp2, tmp3, tmp4; local
1891 u32 tmp1, tmp2, isIntraMb; local
[all...]
H A Dh264bsd_slice_data.c259 i32 tmp2, tmp3; local
264 tmp2 = pSlice->sliceAlphaC0Offset;
268 pMb->filterOffsetA = tmp2;
H A Dh264bsd_intra_prediction.c930 i32 tmp1, tmp2, tmp3, tmp4; local
962 tmp2 = tmp[0];
966 tmp[0] = clp[tmp1 + tmp2];
969 tmp2 = tmp[2];
976 tmp1 = clp[tmp1 + tmp2];
1162 u32 tmp1, tmp2; local
1176 tmp2 = (above[4] + above[5] + above[6] + above[7] + 2) >> 2;
1181 tmp2 = (above[4] + above[5] + above[6] + above[7] + 2) >> 2;
1186 tmp2 = tmp1;
1191 tmp1 = tmp2
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
H A Dc_g_aver.cpp286 Word16 tmp[M], tmp1, tmp2, shift1, shift2, shift;
307 tmp2 = shl(lspAver[i], shift2); // Q15+Qm
308 tmp[i] = div_s(tmp1, tmp2); // Q15+(Q15+Qn)-(Q15+Qm)
487 Word16 tmp2; local
521 tmp2 = shl(*(lspAver + i), shift2, pOverflow); /* Q15+Qm */
522 tmp[i] = div_s(tmp1, tmp2); /* Q15+(Q15+Qn)-(Q15+Qm) */
/frameworks/av/media/libstagefright/codecs/aacenc/basic_op/
H A Doper_32b.c350 Word32 tmp, tmp2; local
353 tmp2 = -x;
354 iPart = tmp2 / y;
355 fPart = tmp2 - iPart*y;
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dq_pulse.c259 Word32 i, j, k, index, tmp2; local
283 tmp2 = L_shl(quant_3p_3N1(posB[0], posB[1], posB[2], n_1), tmp);
284 index = vo_L_add(index, tmp2);
291 tmp2 = L_shl(quant_3p_3N1(posB[0], posB[1], posB[2], n_1), tmp);
292 index = vo_L_add(index, tmp2);
299 tmp2 = L_shl(quant_3p_3N1(posB[0], posB[1], posB[2], n_1), tmp);
300 index = vo_L_add(index, tmp2);
/frameworks/av/media/libstagefright/codecs/avc/enc/src/
H A Dsad_inline.h30 __inline int32 SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
32 tmp = tmp - tmp2;
174 __inline int32 SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
178 rsbs tmp, tmp, tmp2 ; local
343 __inline int32 SUB_SAD(int32 sad, int32 tmp, int32 tmp2) argument
350 : "r"(tmp2)

Completed in 971 milliseconds

123