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

/frameworks/base/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/base/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/base/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/base/media/libstagefright/codecs/aacdec/
H A Dfft_rx4_long.cpp204 Int32 t1; local
255 t1 = temp3 + temp4;
257 *(pData1++) = (r1 + t1);
259 *(pData2++) = (r1 - t1);
271 t1 = temp3 + temp4;
273 *pData1 = (s1 + t1);
274 *pData2 = (s1 - t1);
326 t1 = temp3 + temp4;
329 *pData1 = (s1 + t1);
330 s1 = (s1 - t1) <<
[all...]
H A Dfft_rx4_short.cpp207 Int32 t1; local
279 t1 = temp3 + temp4;
282 *(pData1++) = (r1 + t1) >> exp;
283 *(pData2++) = (r1 - t1) >> exp;
298 t1 = temp3 + temp4;
301 *pData1 = (s1 + t1) >> exp;
302 *pData2 = (s1 - t1) >> exp;
339 t1 = temp3 + temp4;
342 *(pData1++) = (r1 + t1) >> exp;
343 r1 = (r1 - t1) >> ex
[all...]
/frameworks/base/media/libdrm/mobile2/src/util/ustl-1.0/
H A Dutuple.h122 inline bool operator== (const tuple<N,T1>& t1, const tuple<N,T2>& t2) argument
125 if (t1[i] != t2[i])
131 inline bool operator< (const tuple<N,T1>& t1, const tuple<N,T2>& t2) argument
133 for (uoff_t i = 0; i < N && t1[i] <= t2[i]; ++ i)
134 if (t1[i] < t2[i])
140 inline const tuple<N,T1>& operator+= (tuple<N,T1>& t1, const tuple<N,T2>& t2) argument
141 { for (uoff_t i = 0; i < N; ++ i) t1[i] = T1(t1[i] + t2[i]); return (t1); }
144 inline const tuple<N,T1>& operator-= (tuple<N,T1>& t1, cons argument
148 operator *=(tuple<N,T1>& t1, const tuple<N,T2>& t2) argument
152 operator /=(tuple<N,T1>& t1, const tuple<N,T2>& t2) argument
156 operator +(const tuple<N,T1>& t1, const tuple<N,T2>& t2) argument
164 operator -(const tuple<N,T1>& t1, const tuple<N,T2>& t2) argument
172 operator *(const tuple<N,T1>& t1, const tuple<N,T2>& t2) argument
180 operator /(const tuple<N,T1>& t1, const tuple<N,T2>& t2) argument
[all...]
/frameworks/base/awt/java/awt/geom/
H A DAffineTransform.java760 * @param t1
764 * @return an AffineTransform object that is the result of t1 multiplied by
767 AffineTransform multiply(AffineTransform t1, AffineTransform t2) { argument
768 return new AffineTransform(t1.m00 * t2.m00 + t1.m10 * t2.m01, // m00
769 t1.m00 * t2.m10 + t1.m10 * t2.m11, // m01
770 t1.m01 * t2.m00 + t1.m11 * t2.m01, // m10
771 t1
[all...]
/frameworks/base/libs/audioflinger/
H A DAudioMixer.cpp830 const track_t& t1 = state->tracks[i]; local
831 AudioBufferProvider::Buffer& b1(t1.buffer);
839 const int16_t vl1 = t1.volume[0];
840 const int16_t vr1 = t1.volume[1];
866 t1.bufferProvider->getNextBuffer(&b1);
904 t1.bufferProvider->releaseBuffer(&b1);
/frameworks/base/opengl/libagl/
H A Dcopybit.cpp511 const vec4_t& t1 = c->vc.vBuffer[1].texture[0]; local
518 if ((txl != min(t1.x, t3.x)) || (txb != min(t1.y, t3.y)) ||
519 (txr != max(t1.x, t3.x)) || (txt != max(t1.y, t3.y))) {
538 const int ds01 = t1.S - t0.S;
540 const int dt01 = t1.T - t0.T;
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/base/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 177 milliseconds