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

1234567891011>>

/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() nounwind noinline naked {
15 __attribute((naked, always_inline)) void t2() { function
H A Dms_struct-bitfield-init.c32 } ATTR t2 = {'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h', 'i'}; variable in typeref:struct:__anon3358
58 if (sizeof(t2) != 9)
60 if (t2.bar0 != 'a' || t2.bar8 != 'i')
/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.cpp18 T<2> t2; variable
/external/clang/test/Sema/
H A Dattr-nodebug.c7 void t2() __attribute__((nodebug(2))); // expected-error {{attribute takes no arguments}}
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-returns-twice.c10 void t2() __attribute__((returns_twice(2))); // expected-error {{attribute takes no arguments}}
H A Dvector-cast.c4 typedef char t2 __attribute__ ((vector_size (16))); typedef
10 t2 v2;
13 v2 = (t2)v1; // -expected-error {{invalid conversion between vector type \
14 't2' and 't1' of different size}}
16 't1' and 't2' of different size}}
33 void f2(t2 X); // expected-note{{passing argument to parameter 'X' here}}
36 f2(Y); // expected-warning {{incompatible vector types passing 't3' to parameter of type 't2'}}
/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/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();
H A Dmember-functions.cpp59 T t1, t2; local
62 T result = t1 + t2;
/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/valgrind/main/coregrind/
H A Dm_vki.c105 vki_sigaction_toK_t t2; local
108 vg_assert(sizeof(t1.sa_handler) == sizeof(t2.ksa_handler));
109 vg_assert(sizeof(t1.sa_tramp) == sizeof(t2.sa_tramp));
110 vg_assert(sizeof(t1.sa_mask) == sizeof(t2.sa_mask));
111 vg_assert(sizeof(t1.sa_flags) == sizeof(t2.sa_flags));
116 vg_assert(offsetof(t1,sa_handler) == offsetof(t2.ksa_handler));
117 vg_assert(offsetof(t1.sa_tramp) == offsetof(t2.sa_tramp));
118 vg_assert(offsetof(t1.sa_mask) == offsetof(t2.sa_mask));
119 vg_assert(offsetof(t1.sa_flags) == offsetof(t2.sa_flags));
/external/dropbear/libtomcrypt/testprof/
H A Dx86_prof.c107 ulong64 c1, c2, t1, t2, t3; local
115 t2 = (t_read() - t1)>>1;
118 c2 = (t2 > c2) ? t2 : c2;
294 ulong64 t1, t2, c1, c2, a1, a2; local
319 t2 = t_read();
320 t2 -= t1;
323 c2 = (t2 > c2 ? c2 : t2);
338 t2
366 ulong64 t1, t2, c1, c2, a1, a2; local
441 ulong64 t1, t2, c1, c2, a1, a2; local
516 ulong64 t1, t2, c1, c2, a1, a2; local
593 ulong64 t1, t2, c1, c2; local
647 ulong64 t1, t2; local
678 ulong64 t1, t2; local
712 ulong64 t1, t2; local
767 ulong64 t1, t2; local
812 ulong64 t1, t2; local
936 ulong64 t1, t2; local
1006 ulong64 t1, t2; local
1153 ulong64 t1, t2; local
1285 ulong64 t1, t2; local
[all...]
/external/clang/test/Analysis/
H A Doperator-calls.cpp8 void t2() { function
/external/clang/test/CXX/dcl.decl/dcl.init/dcl.init.list/
H A Dp7-0x-fixits.cpp22 struct {T t;} t2 = {700}; local
/external/clang/test/CXX/except/except.spec/
H A Dtemplate.cpp9 void (*t2)() throw() = &f1<0>; // expected-error {{not superset}} variable

Completed in 570 milliseconds

1234567891011>>