Searched defs:t2 (Results 1 - 25 of 303) sorted by relevance

1234567891011>>

/external/clang/test/CXX/except/except.spec/
H A Dtemplate.cpp9 void (*t2)() throw() = &f1<0>; // expected-error {{not superset}} variable
/external/clang/test/CodeGen/
H A Dattr-naked.c14 // CHECK: define void @t2() [[NAKED]] {
15 __attribute((naked, always_inline)) void t2() { function
H A Dvla-4.c13 void t2() { function
H A D2006-01-16-BitCountIntrinsicsUnsigned.c3 unsigned t2(unsigned X) { function
4 // CHECK: t2
H A Darm-vaarg-align.c22 double t2(int i, ...) { function
23 // AAPCS: t2
24 // APCS-GNU: t2
H A Darm-neon-misc.c24 void t2(uint64_t *src1, uint8_t *src2, uint64x2_t *dst) { function
25 // CHECK: @t2
H A Darm-asm-warn.c22 int64x2x4_t t2(const long long a[]) { function
H A Darm-vector-align.c24 void t2(char *addr) { function
25 // CHECK: @t2
H A Dms-inline-asm.c11 void t2() { function
12 // CHECK: @t2
/external/clang/test/PCH/
H A Dcxx-static_assert.cpp19 T<2> t2; variable
/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/clang/test/CodeCompletion/
H A Ddocumentation.cpp22 T2 t2; local
23 t2.
/external/clang/test/Sema/
H A Dwchar.c22 WCHAR_T_TYPE t2[] = "x"; // expected-error {{initializer}} local
/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/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_dbl_point.c36 void *t1, *t2; local
44 if ((err = mp_init_multi(&t1, &t2, NULL)) != CRYPT_OK) {
67 if ((err = mp_sub(R->x, t1, t2)) != CRYPT_OK) { goto done; }
68 if (mp_cmp_d(t2, 0) == LTC_MP_LT) {
69 if ((err = mp_add(t2, modulus, t2)) != CRYPT_OK) { goto done; }
77 if ((err = mp_mul(t1, t2, t2)) != CRYPT_OK) { goto done; }
78 if ((err = mp_montgomery_reduce(t2, modulus, mp)) != CRYPT_OK) { goto done; }
80 if ((err = mp_add(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_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);
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...]
/external/valgrind/main/helgrind/tests/
H A Dhg06_readshared.c13 static void *t2(void *v) function
25 pthread_create(&b, NULL, t2, NULL);
/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/clang/test/PCH/Inputs/
H A Dnamespaces.h8 typedef int t2; typedef in namespace:N1
/external/clang/test/Parser/
H A Dms-inline-asm.c8 void t2(void) { __asm int 0x2c } function
/external/compiler-rt/lib/tsan/tests/rtl/
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...]

Completed in 397 milliseconds

1234567891011>>