HomeSort by relevance Sort by last modified time
    Searched defs:t0 (Results 1 - 25 of 74) sorted by null

1 2 3

  /system/core/libpixelflinger/tests/codegen/
codegen.cpp 5 uint32_t n, uint32_t p, uint32_t t0, uint32_t t1);
16 uint32_t t0; local
18 sscanf(argv[1], "%08x:%08x_%08x_%08x", &p, &n, &t0, &t1);
19 ggl_test_codegen(n, p, t0, t1);
  /frameworks/base/media/libstagefright/codecs/amrnb/dec/src/
ex_ctrl.cpp 162 Word32 t0; local
194 t0 = L_mult(avgEnergy, excEnergy, pOverflow);
195 t0 = L_shr(t0, sub(20, exp, pOverflow), pOverflow);
196 /* const=30 for t0 in Q0, 20 for Q10 */
197 if (t0 > 32767)
199 t0 = 32767; /* saturate */
201 scaleFactor = extract_l(t0);
212 t0 = L_mult(scaleFactor, excitation[i], pOverflow);
213 t0 = L_shr(t0, 11, pOverflow)
    [all...]
  /system/extras/tests/bionic/libc/other/
bench_locks.c 16 double t0, t1; local
23 t0 = now();
28 t1 = now() - t0;
  /external/openssl/crypto/des/
ede_cbcm_enc.c 141 register DES_LONG t0,t1; local
158 t0=tin0;
184 xor0=t0;
qud_cksm.c 79 DES_LONG z0,z1,t0,t1; local
107 t0= (DES_LONG)(*(cp++));
108 t0|=(DES_LONG)Q_B1(*(cp++));
112 t0= (DES_LONG)(*(cp++));
115 t0+=z0;
116 t0&=0xffffffffL;
119 z0=((((t0*t0)&0xffffffffL)+((t1*t1)&0xffffffffL))
121 z1=((t0*((t1+NOISE)&0xffffffffL))&0xffffffffL)%0x7fffffffL;
des_enc.c 346 register DES_LONG t0,t1; local
355 t0=tin0;
368 xor0=t0;
376 t0=tin0;
388 xor0=t0;
  /frameworks/base/media/libstagefright/codecs/amrnb/common/src/
lsp_az.cpp 200 Word32 t0;
216 t0 = Mpy_32_16 (hi, lo, *lsp); // t0 = f[-1] * lsp
217 t0 = L_shl (t0, 1);
219 *f = L_sub (*f, t0); // *f -= t0
262 Word32 t0; local
280 t0 = ((Word32)hi * *lsp);
281 t0 += ((Word32)lo * *lsp) >> 15
519 Word32 t0; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrnb/enc/src/
hp_max.cpp 138 Word32 max, t0, t1;
143 t0 = 0L;
151 t0 = L_sub (L_sub(L_shl(corr[-i], 1), corr[-i-1]), corr[-i+1]);
152 t0 = L_abs (t0);
154 if (L_sub (t0, max) >= 0)
156 max = t0;
163 t0 = 0L;
166 t0 = L_mac (t0, *p, *p1)
249 Word32 max, t0, t1; local
    [all...]
levinson.cpp 482 Word32 t0, t1, t2; // temporary variable
488 t0 = Div_32 (t2, Rh[0], Rl[0]); // R[1]/R[0]
490 t0 = L_negate (t0); // -R[1]/R[0]
491 L_Extract (t0, &Kh, &Kl); // K in DPF
493 rc[0] = pv_round (t0);
495 t0 = L_shr (t0, 4); // A[1] in
496 L_Extract (t0, &Ah[1], &Al[1]); // A[1] in DPF
500 t0 = Mpy_32 (Kh, Kl, Kh, Kl); // K*
654 register Word32 t0; \/* temporary variable *\/ local
    [all...]
p_ol_wgh.cpp 45 Description: t0 was not being declared as Word32.
482 Word32 max, t0;
496 t0 = corr[-i];
500 t0 = Mpy_32_16 (t0_h, t0_l, *ww);
504 L_Extract (t0, &t0_h, &t0_l);
505 t0 = Mpy_32_16 (t0_h, t0_l, *we);
509 if (L_sub (t0, max) >= 0)
511 max = t0;
518 t0 = 0;
523 t0 = L_mac (t0, *p, *p1)
591 Word32 t0; local
878 Word32 t0; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwb/src/
isp_az.cpp 144 int32 t0; local
189 t0 = f1[i];
191 t0 = fxp_mul32_by_16b(t0, isp[m - 1]) << 1;
193 f1[i] += t0;
211 t0 = add_int32(f1[i], f2[i]); /* f1[i] + f2[i] */
212 /* compute t1 = abs(t0) */
213 t1 = t0 - (t0 < 0);
218 a[i] = (int16)((t0 >> 12) + ((t0 >> 11) & 1))
337 int32 t0; local
374 int32 t0; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/amrwbenc/src/
isp_az.c 49 Word32 t0; local
94 t0 = Mpy_32_16(hi, lo, isp[m - 1]);
95 f1[i] = vo_L_add(f1[i], t0);
101 t0 = Mpy_32_16(hi, lo, isp[m - 1]);
102 f2[i] = vo_L_sub(f2[i], t0);
117 t0 = vo_L_add(f1[i], f2[i]); /* f1[i] + f2[i] */
118 tmax |= L_abs(t0);
119 a[i] = (Word16)(vo_L_shr_r(t0, 12)); /* from Q23 to Q12 and * 0.5 */
123 t0 = vo_L_sub(f1[i], f2[i]); /* f1[i] - f2[i] */
124 tmax |= L_abs(t0);
189 Word32 i, j, t0; local
220 Word32 i, j, t0; local
    [all...]
levinson.c 121 Word32 t0, t1, t2; /* temporary variable */ local
132 t0 = Div_32(t2, Rh[0], Rl[0]); /* R[1]/R[0] in Q31 */
134 t0 = -t0; /* -R[1]/R[0] */
136 Kh = t0 >> 16;
137 Kl = (t0 & 0xffff)>>1;
139 t0 = (t0 >> 4); /* A[1] in Q27 */
141 Ah[1] = t0 >> 16;
142 Al[1] = (t0 & 0xffff)>>1;
    [all...]
  /external/chromium/base/
tuple_unittest.cc 31 Tuple0 t0 = MakeTuple(); local
  /external/dropbear/libtomcrypt/src/mac/pelican/
pelican.c 57 ulong32 s0, s1, s2, s3, t0, t1, t2, t3; local
65 t0 =
85 s0 = t0; s1 = t1; s2 = t2; s3 = t3;
  /external/webkit/WebCore/platform/graphics/
UnitBezier.h 65 double t0; local
84 t0 = 0.0;
88 if (t2 < t0)
89 return t0;
93 while (t0 < t1) {
98 t0 = t2;
101 t2 = (t1 - t0) * .5 + t0;
  /frameworks/base/media/libeffects/lvm/lib/Eq/src/
LVEQNB_CalcCoef.c 54 /* t0 = 2 * Pi * Fc / Fs */
58 /* b2 = -0.5 * (2Q - D * t0) / (2Q + D * t0) */
59 /* b1 = (0.5 - b2) * (1 - coserr(t0)) */
69 /* the cosine of t0 is always close to 1.0. Instead of calculating the cosine */
100 LVM_INT32 T0;
111 LVM_INT16 t0; local
117 T0 = (LVM_INT32)Frequency * LVEQNB_TwoPiOnFsTable[Fs]; /* T0 = 2 * Pi * Fc / Fs */
130 Dt0 = D * (T0 >> 10)
242 LVM_INT16 t0; local
    [all...]
  /system/extras/tests/pftest/
pftest.c 97 unsigned long long t0 = stop_watch(); local
105 printf("%d, %f\n", numPages, (float) (t1 - t0) / WORKLOAD);
  /external/dropbear/libtomcrypt/src/hashes/sha2/
sha256.c 74 ulong32 S[8], W[64], t0, t1; local
98 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
100 d += t0; \
101 h = t0 + t1;
110 t0 = h + Sigma1(e) + Ch(e, f, g) + ki + W[i]; \
112 d += t0; \
113 h = t0 + t1;
sha512.c 99 ulong64 S[8], W[80], t0, t1; local
120 t0 = S[7] + Sigma1(S[4]) + Ch(S[4], S[5], S[6]) + K[i] + W[i];
125 S[4] = S[3] + t0;
129 S[0] = t0 + t1;
133 t0 = h + Sigma1(e) + Ch(e, f, g) + K[i] + W[i]; \
135 d += t0; \
136 h = t0 + t1;
  /frameworks/base/tests/CoreTests/android/core/
RegexTest.java 276 long t0 = System.currentTimeMillis(); local
281 "took " + (t1 - t0) + " ms.");
  /libcore/luni/src/test/java/org/bouncycastle/crypto/digests/
DigestTest.java 61 long t0 = System.currentTimeMillis(); local
68 oldTime = oldTime + (t1 - t0);
  /system/core/fastboot/
usbtest.c 94 long long t0, t1; local
96 t0 = NOW();
104 fprintf(stderr,"%d bytes in %lld uS\n", arg_count * arg_size, (t1 - t0));
112 long long t0, t1; local
114 t0 = NOW();
122 fprintf(stderr,"%d bytes in %lld uS\n", arg_count * arg_size, (t1 - t0));
  /development/ndk/samples/hello-neon/jni/
helloneon.c 87 double t0, t1, time_c, time_neon; local
99 t0 = now_ms();
107 time_c = t1 - t0;
134 t0 = now_ms();
142 time_neon = t1 - t0;
  /external/dropbear/libtomcrypt/src/ciphers/aes/
aes.c 294 ulong32 s0, s1, s2, s3, t0, t1, t2, t3, *rk; local
317 t0 =
344 s0 = t0; s1 = t1; s2 = t2; s3 = t3;
355 t0 =
386 Te0(byte(t0, 3)) ^
395 Te3(byte(t0, 0)) ^
400 Te2(byte(t0, 1)) ^
405 Te1(byte(t0, 2)) ^
418 (Te4_3[byte(t0, 3)]) ^
428 (Te4_0[byte(t0, 0)])
473 ulong32 s0, s1, s2, s3, t0, t1, t2, t3, *rk; local
    [all...]

Completed in 504 milliseconds

1 2 3