Searched refs:t2 (Results 1 - 25 of 470) sorted by relevance

1234567891011>>

/external/clang/test/CodeCompletion/
H A Ddocumentation.cpp22 T2 t2; local
23 t2.
/external/clang/test/CodeGen/
H A D2006-01-16-BitCountIntrinsicsUnsigned.c3 unsigned t2(unsigned X) { function
4 // CHECK: t2
H A Dattr-naked.c14 // CHECK: define void @t2() [[NAKED]] {
15 __attribute((naked, always_inline)) void t2() { function
/external/compiler-rt/lib/tsan/tests/rtl/
H A Dtsan_test.cc21 ScopedThread t1, t2; local
24 t2.Call(foo);
25 t2.Call(bar);
26 t2.Write1(l, true);
27 t2.Return();
28 t2.Return();
H A Dtsan_string.cc44 ScopedThread t1, t2; local
46 t2.Memcpy(data, data2, 10, true);
56 ScopedThread t1, t2; local
58 t2.Memcpy(data+3, data2, 4, true);
66 ScopedThread t1, t2; local
68 t2.Memcpy(data1, data2, 10, true);
74 ScopedThread t1, t2; local
76 t2.Memcpy(data, data1, 10, true);
81 ScopedThread t1, t2; local
83 t2
[all...]
H A Dtsan_mop.cc26 ScopedThread t1, t2; local
29 t2.Write1(l2);
33 ScopedThread t1, t2; local
36 t2.Write1(l, true);
40 ScopedThread t1, t2; local
43 t2.Write1(l, true);
47 ScopedThread t1, t2; local
50 t2.Read1(l, true);
54 ScopedThread t1, t2; local
57 t2
62 ScopedThread t1, t2; local
74 ScopedThread t1, t2; local
93 ScopedThread t1, t2; local
108 ScopedThread t1, t2; local
142 ScopedThread t1, t2; local
156 ScopedThread t1, t2; local
181 ScopedThread t1, t2; local
190 ScopedThread t1, t2; local
211 ScopedThread t2; local
[all...]
/external/clang/test/SemaCXX/
H A Dwarn-char-subscripts.cpp11 void t2() { function
19 t2<char>(); // expected-note {{in instantiation of function template specialization 't2<char>' requested here}}
/external/clang/test/PCH/
H A Dcxx-static_assert.cpp19 T<2> t2; variable
/external/clang/test/Sema/
H A Dattr-noinline.c7 void t2() __attribute__((noinline(2))); // expected-error {{attribute takes no arguments}}
H A Dattr-naked.c11 void t2() __attribute__((naked(2))); // expected-error {{attribute takes no arguments}}
H A Dattr-nodebug.c11 void t2() __attribute__((nodebug(2))); // expected-error {{attribute takes no arguments}}
/external/webkit/Source/WebCore/platform/graphics/
H A DUnitBezier.h67 double t2; local
73 for (t2 = x, i = 0; i < 8; i++) {
74 x2 = sampleCurveX(t2) - x;
76 return t2;
77 d2 = sampleCurveDerivativeX(t2);
80 t2 = t2 - x2 / d2;
86 t2 = x;
88 if (t2 < t0)
90 if (t2 > t
[all...]
/external/dropbear/libtommath/
H A Dbn_mp_lcm.c22 mp_int t1, t2; local
25 if ((res = mp_init_multi (&t1, &t2, NULL)) != MP_OKAY) {
36 /* store quotient in t2 such that t2 * b is the LCM */
37 if ((res = mp_div(a, &t1, &t2, NULL)) != MP_OKAY) {
40 res = mp_mul(b, &t2, c);
42 /* store quotient in t2 such that t2 * a is the LCM */
43 if ((res = mp_div(b, &t1, &t2, NULL)) != MP_OKAY) {
46 res = mp_mul(a, &t2,
[all...]
H A Dbn_mp_n_root.c30 mp_int t1, t2, t3; local
42 if ((res = mp_init (&t2)) != MP_OKAY) {
54 /* t2 = 2 */
55 mp_set (&t2, 2);
58 /* t1 = t2 */
59 if ((res = mp_copy (&t2, &t1)) != MP_OKAY) {
63 /* t2 = t1 - ((t1**b - a) / (b * t1**(b-1))) */
71 /* t2 = t1**b */
72 if ((res = mp_mul (&t3, &t1, &t2)) != MP_OKAY) {
76 /* t2
[all...]
H A Dbn_mp_sqrt.c22 mp_int t1,t2; local
39 if ((res = mp_init(&t2)) != MP_OKAY) {
47 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
50 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
58 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
61 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
67 /* t1 >= sqrt(arg) >= t2 at this point */
68 } while (mp_cmp_mag(&t1,&t2) == MP_GT);
72 E1: mp_clear(&t2);
/external/valgrind/main/none/tests/mips32/
H A DMIPS32int.c133 TESTINST1("add $t0, $t1, $t2", 0, 0, t0, t1, t2);
134 TESTINST1("add $t0, $t1, $t2", 0, 1, t0, t1, t2);
135 TESTINST1("add $t0, $t1, $t2", 1, 0, t0, t1, t2);
136 TESTINST1("add $t0, $t1, $t2", 1, 1, t0, t1, t2);
137 TESTINST1("add $t0, $t1, $t2", 0, -1, t0, t1, t2);
[all...]
/external/valgrind/unittest/output_tests/
H A Dfun_hist_test.cc34 MyThread t2(Thread2, NULL, "test-thread-2");
36 t2.Start();
38 t2.Join();
H A Doutput_test1.cc20 MyThread t2(Thread2, NULL, "test-thread-2");
22 t2.Start();
24 t2.Join();
/external/clang/test/CodeGenCXX/
H A Dpredefined-expr-sizeof.cpp23 TemplateClass<double> t2; local
24 t2.templateClassFunction();
/external/clang/test/Index/
H A Dcomplete-documentation.cpp33 T2 t2; local
34 t2.T4;
/external/dropbear/libtomcrypt/src/pk/ecc/
H A Dltc_ecc_map.c35 void *t1, *t2; local
42 if ((err = mp_init_multi(&t1, &t2, NULL)) != CRYPT_OK) {
53 if ((err = mp_sqr(t1, t2)) != CRYPT_OK) { goto done; }
54 if ((err = mp_mod(t2, modulus, t2)) != CRYPT_OK) { goto done; }
55 if ((err = mp_mul(t1, t2, t1)) != CRYPT_OK) { goto done; }
59 if ((err = mp_mul(P->x, t2, P->x)) != CRYPT_OK) { goto done; }
67 mp_clear_multi(t1, t2, NULL);
H A Dltc_ecc_projective_add_point.c37 void *t1, *t2, *x, *y, *z; local
46 if ((err = mp_init_multi(&t1, &t2, &x, &y, &z, NULL)) != CRYPT_OK) {
56 mp_clear_multi(t1, t2, x, y, z, NULL);
84 if ((err = mp_mul(Q->x, t1, t2)) != CRYPT_OK) { goto done; }
85 if ((err = mp_montgomery_reduce(t2, modulus, mp)) != CRYPT_OK) { goto done; }
109 if ((err = mp_sub(x, t2, x)) != CRYPT_OK) { goto done; }
114 if ((err = mp_add(t2, t2, t2)) != CRYPT_OK) { goto done; }
115 if (mp_cmp(t2, modulu
[all...]
/external/webkit/LayoutTests/fast/events/touch/script-tests/
H A Ddocument-create-touch-list-crash.js11 var t2 = document.createTouch(window, document.body, 12342, 50, 55, 115, 120); variable
12 var tl = document.createTouchList(t, document, t2);
/external/aac/libFDK/src/
H A Dfft_rad2.cpp173 INT t2 = t1 + (mh<<1); local
176 //cplxMultDiv2(&vi, &vr, x[t2+1], x[t2], (FIXP_SGL)1.0, (FIXP_SGL)0.0);
177 vi = x[t2+1]>>1;
178 vr = x[t2]>>1;
186 x[t2] = ur-vr;
187 x[t2+1] = ui-vi;
190 t2 = t1+(mh<<1);
192 //cplxMultDiv2(&vr, &vi, x[t2+1], x[t2], (FIXP_SG
215 INT t2 = t1 + (mh<<1); local
279 INT t2 = t1 + (mh<<1); local
375 INT t2 = t1 + (mh<<1); local
417 INT t2 = t1 + (mh<<1); local
480 INT t2 = t1 + (mh<<1); local
[all...]
/external/eigen/test/
H A Dzerosized.cpp25 MatrixType t2(0, 0);
26 VERIFY(t2.rows() == 0);
27 VERIFY(t2.cols() == 0);
39 VectorType t2(DenseIndex(0)); // DenseIndex disambiguates with 0-the-null-pointer (error with gcc 4.4 and MSVC8)
40 VERIFY(t2.size() == 0);

Completed in 511 milliseconds

1234567891011>>