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

1234567891011>>

/external/clang/test/CodeGen/
H A Dattr-noinline.c4 void t1() __attribute__((noinline));
6 void t1() function
H A Darm-asm.c3 int t1() { function
H A Dattr-naked.c3 void t1() __attribute__((naked));
7 // CHECK: define void @t1() nounwind noinline naked {
8 void t1() function
H A Dattr-nodebug.c4 void t1() __attribute__((nodebug));
6 void t1() function
H A Dvla-4.c6 void t1() { function
H A D2006-01-16-BitCountIntrinsicsUnsigned.c8 int t1(int X) { function
9 // CHECK: t1
H A Darm-inline-asm.c4 void t1 (void *f, int g) { function
H A Darm-vaarg-align.c9 long long t1(int i, ...) { function
10 // AAPCS: t1
11 // APCS-GNU: t1
H A Darm-neon-misc.c14 void t1(uint64_t *src, uint8_t *dst) { function
15 // CHECK: @t1
H A Dlibcalls-fno-builtin.c10 double t1(double x) { return ceil(x); } function
11 // CHECK: t1
H A Darm-vector-align.c15 void t1(AlignedAddr *addr1, AlignedAddr *addr2) { function
16 // CHECK: @t1
H A Dms-inline-asm.c3 void t1() { function
4 // CHECK: @t1
/external/clang/test/CXX/except/except.spec/
H A Dtemplate.cpp8 void (*t1)() throw(int) = &f1<0>; variable
/external/clang/test/PCH/
H A Dcxx-static_assert.cpp18 T<1> t1; // expected-note {{in instantiation of template class 'T<1>' requested here}} variable
/external/clang/test/Sema/
H A Dsign-conversion.c7 unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}} local
H A Dwchar.c18 WCHAR_T_TYPE t1[] = L"x"; local
/external/eigen/test/
H A Dzerosized.cpp14 MatrixType t1; local
19 VERIFY(t1.rows() == 0);
21 VERIFY(t1.cols() == 0);
34 VectorType t1; local
38 VERIFY(t1.size() == 0);
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp1.cpp6 Tuple<int> *t1; variable
/external/clang/test/SemaCXX/
H A Dwarn-char-subscripts.cpp4 void t1() { function
18 t1<char>(); // expected-note {{in instantiation of function template specialization 't1<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) {
50 if ((err = mp_invmod(P->z, modulus, t1)) != CRYPT_OK) { goto done; }
53 if ((err = mp_sqr(t1, t2)) != CRYPT_OK) { goto done; }
55 if ((err = mp_mul(t1, t2, t1)) != CRYPT_OK) { goto done; }
56 if ((err = mp_mod(t1, modulus, t1)) != CRYPT_OK) { goto done; }
61 if ((err = mp_mul(P->y, t1, P->y)) != CRYPT_OK) { goto done; }
67 mp_clear_multi(t1, 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) {
29 /* t1 = get the GCD of the two inputs */
30 if ((res = mp_gcd (a, b, &t1)) != MP_OKAY) {
37 if ((res = mp_div(a, &t1, &t2, NULL)) != MP_OKAY) {
43 if ((res = mp_div(b, &t1, &t2, NULL)) != MP_OKAY) {
53 mp_clear_multi (&t1, &t2, NULL);
H A Dbn_mp_sqrt.c22 mp_int t1,t2; local
35 if ((res = mp_init_copy(&t1, arg)) != MP_OKAY) {
44 mp_rshd (&t1,t1.used/2);
46 /* t1 > 0 */
47 if ((res = mp_div(arg,&t1,&t2,NULL)) != MP_OKAY) {
50 if ((res = mp_add(&t1,&t2,&t1)) != MP_OKAY) {
53 if ((res = mp_div_2(&t1,&t1)) !
[all...]
/external/llvm/unittests/Support/
H A DManagedStatic.cpp35 pthread_t t1, t2; local
36 pthread_create(&t1, NULL, test1::helper, NULL);
38 pthread_join(t1, NULL);
/external/valgrind/main/helgrind/tests/
H A Dhg06_readshared.c8 static void *t1(void *v) function
24 pthread_create(&a, NULL, t1, NULL);
/external/clang/test/CodeGenCXX/
H A Dpredefined-expr-sizeof.cpp21 TemplateClass<int> t1; local
22 t1.templateClassFunction();

Completed in 2260 milliseconds

1234567891011>>