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

12

/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 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/tests/net/java/android/net/
H A DNetworkTest.java155 private static <T> void assertNotEqual(T t1, T t2) { argument
156 assertFalse(Objects.equals(t1, t2));
H A DStaticIpConfigurationTest.java60 private static <T> void assertNotEquals(T t1, T t2) { argument
61 assertFalse(Objects.equals(t1, t2));
/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/native/libs/vr/libdvrcommon/include/private/dvr/
H A Dortho.h20 const T t1 = static_cast<T>(1); local
24 0, 0, 0, t1;
/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/base/tests/JankBench/app/src/main/jni/
H A Dtest.cpp136 uint64_t t1 = GetTime(); local
143 double dt = t2 - t1;
H A DBench.cpp204 uint64_t t1 = getTimeMillis(); local
208 double dt = getTimeMillis() - t1;
254 uint64_t t1 = getTimeNanos(); local
268 double dt = getTimeNanos() - t1;
360 uint64_t t1 = getTimeNanos(); local
362 double dt = getTimeNanos() - t1;
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/util/
H A DCachedPathIteratorFactory.java128 private static void quadCurveSegment(float[] coords, float t0, float t1) { argument
130 float mt = t0 + (t1 - t0) / 2;
136 float u1 = 1 - t1;
142 // coords at t1
143 coords[4] = coords[0] * u1 * u1 + coords[2] * 2 * t1 * u1 + coords[4] * t1 * t1;
144 coords[5] = coords[1] * u1 * u1 + coords[3] * 2 * t1 * u1 + coords[5] * t1 * t1;
151 cubicCurveSegment(float[] coords, float t0, float t1) argument
[all...]
/frameworks/av/media/libstagefright/mpeg2ts/
H A DAnotherPacketSource.cpp472 int64_t t1 = 0, t2 = 0; local
482 t1 = maxTimesUs.itemAt(0);
486 return mEstimatedBufferDurationUs = t2 - t1;
/frameworks/base/core/tests/coretests/src/android/content/pm/
H A DRegisteredServicesCacheTest.java58 private final TestServiceType t1 = new TestServiceType("t1", "value1"); field in class:RegisteredServicesCacheTest
79 cache.addServiceForQuerying(U0, r1, newServiceInfo(t1, UID1));
91 cache.addServiceForQuerying(U0, r1, newServiceInfo(t1, UID1));
97 cache.addServiceForQuerying(U0, r1, newServiceInfo(t1, UID1));
113 cache.addServiceForQuerying(U0, r1, newServiceInfo(t1, UID1));
121 cache.addServiceForQuerying(U0, r1, newServiceInfo(t1, UID1));
128 cache.addServiceForQuerying(U0, r1, newServiceInfo(t1, UID1));
146 cache.addServiceForQuerying(U0, r1, newServiceInfo(t1, UID1));
180 // Now introduce 2 service types for u0: t1, t
[all...]
/frameworks/native/libs/vr/libbufferhubqueue/benchmarks/
H A Dbuffer_transport_benchmark.cpp494 auto t1 = std::chrono::high_resolution_clock::now(); local
498 std::chrono::duration<double, std::micro> delta_us = t2 - t1;
505 auto t1 = std::chrono::high_resolution_clock::now(); local
508 std::chrono::duration<double, std::micro> delta_us = t2 - t1;
/frameworks/av/media/libaudioprocessing/
H A DAudioMixer.cpp1347 const std::shared_ptr<Track> &t1 = mTracks[group[0]]; local
1348 convertMixerFormat(out, t1->mMixerFormat, outTemp, t1->mMixerInFormat,
1349 frameCount * t1->mMixerChannelCount);
1352 + frameCount * t1->mMixerChannelCount
1353 * audio_bytes_per_sample(t1->mMixerFormat));
1374 const std::shared_ptr<Track> &t1 = mTracks[group[0]]; local
1377 memset(outTemp, 0, sizeof(*outTemp) * t1->mMixerChannelCount * mFrameCount);
1412 convertMixerFormat(t1->mainBuffer, t1
[all...]
/frameworks/base/core/jni/android/graphics/
H A DPath.cpp299 float t0, const SkPoint &p0, float t1, const SkPoint &p1,
301 midT = (t1 + t0) / 2;
298 subdividePoints(const SkPoint* points, bezierCalculation bezierFunction, float t0, const SkPoint &p0, float t1, const SkPoint &p1, float& midT, SkPoint &midPoint, float errorSquared) argument
/frameworks/base/libs/common_time/
H A Dcommon_time_server.cpp212 uint32_t t1, t2; local
230 t1 = static_cast<uint32_t>(mCurTimeout.msecTillTimeout());
232 timeout = static_cast<int>(t1 < t2 ? t1 : t2);
/frameworks/base/services/core/java/com/android/server/am/
H A DRecentTasks.java1559 private boolean hasCompatibleActivityTypeAndWindowingMode(TaskRecord t1, TaskRecord t2) { argument
1560 final int activityType = t1.getActivityType();
1561 final int windowingMode = t1.getWindowingMode();
/frameworks/native/opengl/libagl/
H A Dprimitives.cpp696 int32_t s0, int32_t t0, int32_t s1, int32_t t1, int32_t s2, int32_t t2)
709 gglMulx(s2-s0, t1-t0, shift) )*w*h;
730 int32_t t1 = v1->texture[i].T; local
736 int lod = compute_lod(c, i, s0, t0, s1, t1, s2, t2);
751 t1 *= height;
755 itt[7] = -lerp.iteratorsScale(itt+3, t0, t1, t2);
787 int32_t t1 = v1->texture[i].T; local
793 int lod = compute_lod(c, i, s0, t0, s1, t1, s2, t2);
808 t1 *= height;
815 t1
695 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);
/frameworks/av/media/libstagefright/
H A DUtils.cpp1780 bool operator <(const HLSTime &t0, const HLSTime &t1) { argument
1784 return t0.mSeq < t1.mSeq
1785 || (t0.mSeq == t1.mSeq && t0.mTimeUs < t1.mTimeUs);
/frameworks/native/services/surfaceflinger/tests/
H A DTransaction_test.cpp1812 Transaction t1, t2; local
1813 t1.setPosition(mFGSurfaceControl, 128, 128);
1816 // overwrites the position update from t1.
1817 t1.merge(std::move(t2));
1818 t1.apply();

Completed in 373 milliseconds

12