Searched defs:t1 (Results 1 - 23 of 23) sorted by relevance

/frameworks/av/media/libstagefright/codecs/amrnb/enc/src/
H A Dcalc_cor.cpp227 Word32 t1; local
237 t1 = 0;
248 t1 = amrnb_fxp_mac_16_by_16bb((Word32) * (p), (Word32) * (p1++), t1);
253 t1 = amrnb_fxp_mac_16_by_16bb((Word32) * (p), (Word32) * (p1++), t1);
259 *(corr++) = t1 << 1;
H A Dhp_max.cpp138 Word32 max, t0, t1;
171 t1 = 0L;
174 t1 = L_mac (t1, *p, *p1);
178 t0 = L_sub(L_shl(t0, 1), L_shl(t1, 1));
249 Word32 max, t0, t1; local
282 t1 = 0L;
285 t1 = L_mac(t1, *p, *p1, pOverflow);
290 t1
[all...]
H A Dlevinson.cpp482 Word32 t0, t1, t2; // temporary variable
486 t1 = L_Comp (Rh[1], Rl[1]);
487 t2 = L_abs (t1); // abs R[1]
489 if (t1 > 0)
527 t1 = L_Comp (Rh[i], Rl[i]);
528 t0 = L_add (t0, t1); // add R[i]
532 t1 = L_abs (t0);
533 t2 = Div_32 (t1, alp_h, alp_l); // abs(t0)/Alpha
655 register Word32 t1; /* temporary variable */ local
667 t1
[all...]
H A Dp_ol_wgh.cpp486 Word32 t1;
519 t1 = 0;
524 t1 = L_mac (t1, *p1, *p1);
531 vadSt->L_R0 = L_add(vadSt->L_R0, t1); // Save max energy
535 vad_tone_detection (vadSt, t0, t1);
540 // is t2/t1 > 0.4 ?
541 *gain_flg = pv_round(L_msu(t0, pv_round(t1), 13107));
597 Word32 t1; local
632 t1
[all...]
/frameworks/av/media/libstagefright/codecs/amrnb/common/src/
H A Dlsp_az.cpp520 Word32 t1; local
545 t1 = *(p_f1++) - *(p_f2++); /* f1[i] - f2[i] */
548 t1 = t1 + ((Word32) 1 << 12);
551 a[j] = (Word16)(t1 >> 13);
H A Dvad1.cpp1940 t1 -- Word32 -- energy
2002 Word32 t1, /* i : energy */
2008 if (t0 > TONE_THR * t1)
2011 temp = pv_round(t1, pOverflow);
1999 vad_tone_detection( vadState1 *st, Word32 t0, Word32 t1, Flag *pOverflow ) argument
/frameworks/av/media/libstagefright/codecs/amrwb/src/
H A Disp_az.cpp145 int32 t1; local
190 t1 = f2[i];
192 t1 = fxp_mul32_by_16b(t1, isp[m - 1]) << 1;
194 f2[i] -= t1;
212 /* compute t1 = abs(t0) */
213 t1 = t0 - (t0 < 0);
214 t1 = t1 ^(t1 >> 3
[all...]
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/
H A Dlevinson.c121 Word32 t0, t1, t2; /* temporary variable */ local
130 t1 = ((Rh[1] << 16) + (Rl[1] << 1)); /* R[1] in Q31 */
131 t2 = L_abs(t1); /* abs R[1] */
133 if (t1 > 0)
172 t1 = ((Rh[i] << 16) + (Rl[i] << 1));
173 t0 = vo_L_add(t0, t1); /* add R[i] in Q31 */
176 t1 = L_abs(t0);
177 t2 = Div_32(t1, alp_h, alp_l); /* abs(t0)/Alpha */
/frameworks/av/media/libstagefright/codecs/aacenc/SampleCode/
H A DAAC_E_SAMPLES.c136 int t1, t2; local
231 t1 = clock();
258 total += t2 - t1;
/frameworks/av/media/libstagefright/codecs/aacenc/src/
H A Dbit_cnt.c46 Word32 t0,t1,t2,t3,i; local
61 t1= values[i+1];
67 bc1_2 = bc1_2 + EXPAND(huff_ltab1_2[t0+1][t1+1][t2+1][t3+1]);
70 bc5_6 = bc5_6 + EXPAND(huff_ltab5_6[t0+4][t1+4]);
74 t1=ABS(t1);
79 bc3_4 = bc3_4 + EXPAND(huff_ltab3_4[t0][t1][t2][t3]);
81 bc7_8 = bc7_8 + EXPAND(huff_ltab7_8[t0][t1]);
84 bc9_10 = bc9_10 + EXPAND(huff_ltab9_10[t0][t1]);
87 bc11 = bc11 + huff_ltab11[t0][t1];
122 Word32 t0,t1,t2,t3, i; local
197 Word32 t0,t1,i; local
253 Word32 t0,t1, i; local
302 Word32 t0,t1,i; local
349 Word32 t0,t1,i; local
390 Word32 t0,t1,t00,t01,i; local
498 Word32 i, t0, t1, t2, t3, t00, t01; local
[all...]
H A Dtransform.c32 t = p0; t1 = *(&(p0)+1); \
34 p1 = t; *(&(p1)+1) = t1
46 int t, t1; local
114 int t0, t1, t2, t3; local
146 t1 = (i0 + i2) >> 1;
151 buf[ 1] = i4 + t1;
153 buf[ 9] = i4 - t1;
165 t1 = MULHIGH(SQRT1_2, r0 + i0);
170 buf[ 7] = i6 - t1;
172 buf[15] = i6 + t1;
192 int t0, t1; local
[all...]
/frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
H A DarmVCM4P10_DeblockingLuma_unsafe_s.s97 t1 RN 12 label
131 USUB8 t1, p_1, p_0
135 SSUB8 t1, t1, t2
139 SHSUB8 t1, t1, t2
141 SSUB8 t1, t1, t2
142 SHSUB8 t1, t1, t
[all...]
H A DomxVCM4P10_FilterDeblockingChroma_HorEdge_I_s.s89 t1 RN 10 label
194 UHADD8 t1, p_0, q_1
197 UHSUB8 t1, t1, t2
199 EOR t1, t1, m01, LSL #7
208 SEL P_0, t1, p_0
253 USUB8 t1, p_1, p_0
258 SSUB8 t1, t1, t
[all...]
H A DomxVCM4P10_FilterDeblockingChroma_VerEdge_I_s.s113 t1 RN 10 label
276 UHADD8 t1, p_0, q_1
279 UHSUB8 t1, t1, t2
281 EOR t1, t1, m01, LSL #7
290 SEL P_0, t1, p_0
334 USUB8 t1, p_1, p_0
339 SSUB8 t1, t1, t
[all...]
H A DomxVCM4P10_FilterDeblockingLuma_HorEdge_I_s.s115 t1 RN 12 label
229 SEL t1, t7, filt ;// aqflg = filt && (aq<beta)
231 ORR apqflg, apflg, t1, LSL #1
H A DomxVCM4P10_FilterDeblockingLuma_VerEdge_I_s.s141 t1 RN 12 label
327 SEL t1, t7, filt ;// aqflg = filt && (aq<beta)
329 ORR apqflg, apflg, t1, LSL #1
/frameworks/av/media/libstagefright/wifi-display/
H A Dudptest.cpp234 int64_t t1 = U64_AT(data->data() + 4); local
242 seqNo, t3 - t1);
244 mTotalTimeUs += t3 - t1;
/frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
H A Dh264bsd_deblocking.c2215 u32 t1, t2; local
2217 t1 = bs[i][0];
2219 threshold[i][0] = (t1) ? tc0[indexA][t1] : 0;
2220 t1 = bs[i][2];
2223 threshold[i][2] = (t1) ? tc0[indexA][t1] : 0;
2224 t1 = bs[i][4];
2227 threshold[i][4] = (t1) ? tc0[indexA][t1]
2256 u32 t1, t2, t3, t4; local
2346 u32 t1, t2; local
2371 u32 t1, t2, t3, t4; local
[all...]
H A Dh264bsd_intra_prediction.c1390 u8 t1, t2; local
1407 t1 = left[y ];
1409 l[1] = t1;
1411 t1 = left[y + 2];
1413 l[3] = t1;
1418 t1 = data[y * 16 + x - 1 ];
1420 l[1] = t1;
1422 t1 = data[y * 16 + x - 1 + 32];
1424 l[3] = t1;
1431 t1
1493 u8 t1, t2; local
1525 u8 t1, t2; local
1559 u8 t1, t2, t3, t4; local
[all...]
/frameworks/av/services/audioflinger/
H A DAudioMixer.cpp1056 track_t& t1 = state->tracks[i]; local
1062 if (CC_UNLIKELY(t2.mainBuffer != t1.mainBuffer)) {
1068 memset(t1.mainBuffer, 0, bufSize);
1073 t1 = state->tracks[i];
1076 t1.buffer.frameCount = outFrames;
1078 t1, pts, state->frameCount - outFrames);
1079 t1.bufferProvider->getNextBuffer(&t1.buffer, outputPTS);
1080 if (t1.buffer.raw == NULL) break;
1081 outFrames -= t1
1122 track_t& t1 = state->tracks[j]; local
1206 track_t& t1 = state->tracks[j]; local
[all...]
/frameworks/base/services/common_time/
H A Dcommon_time_server.cpp211 uint32_t t1, t2; local
229 t1 = static_cast<uint32_t>(mCurTimeout.msecTillTimeout());
231 timeout = static_cast<int>(t1 < t2 ? t1 : t2);
/frameworks/native/opengl/libagl/
H A Dprimitives.cpp695 int32_t s0, int32_t t0, int32_t s1, int32_t t1, int32_t s2, int32_t t2)
708 gglMulx(s2-s0, t1-t0, shift) )*w*h;
729 int32_t t1 = v1->texture[i].T; local
735 int lod = compute_lod(c, i, s0, t0, s1, t1, s2, t2);
750 t1 *= height;
754 itt[7] = -lerp.iteratorsScale(itt+3, t0, t1, t2);
786 int32_t t1 = v1->texture[i].T; local
792 int lod = compute_lod(c, i, s0, t0, s1, t1, s2, t2);
807 t1 *= height;
814 t1
694 compute_lod(ogles_context_t* c, int i, int32_t s0, int32_t t0, int32_t s1, int32_t t1, int32_t s2, int32_t t2) argument
[all...]
/frameworks/native/opengl/tests/angeles/
H A Ddemo.c230 float t1 = -PI + longitude * 2 * PI / resol1; local
236 r0 = ssFunc(t1, params);
249 superShapeMap(&pa, r0, r1, t1, p1);
252 superShapeMap(&pd, r0, r3, t1, p2);

Completed in 634 milliseconds