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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CodeGen/
arm-inline-asm.c 4 void t1 (void *f, int g) { function
attr-noinline.c 4 void t1() __attribute__((noinline));
6 void t1() function
2006-01-16-BitCountIntrinsicsUnsigned.c 8 int t1(int X) { function
9 // CHECK: t1
arm-asm.c 3 int t1() { function
attr-naked.c 3 void t1() __attribute__((naked));
7 // CHECK: define void @t1() [[NAKED:#[0-9]+]] {
8 void t1() function
attr-nodebug.c 4 void t1() __attribute__((nodebug));
6 void t1() function
vla-4.c 6 void t1() { function
arm-neon-misc.c 14 void t1(uint64_t *src, uint8_t *dst) { function
15 // CHECK: @t1
arm-vaarg-align.c 9 long long t1(int i, ...) { function
10 // AAPCS: t1
11 // APCS-GNU: t1
  /external/clang/test/CXX/except/except.spec/
template.cpp 8 void (*t1)() throw(int) = &f1<0>; variable
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/ratio/ratio.ratio/
ratio1.fail.cpp 17 const std::intmax_t t1 = std::ratio<1, 0>::num; local
ratio2.fail.cpp 18 const std::intmax_t t1 = std::ratio<0x8000000000000000ULL, 1>::num; local
ratio3.fail.cpp 18 const std::intmax_t t1 = std::ratio<1, 0x8000000000000000ULL>::num; local
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.hash/
hash.pass.cpp 26 std::type_index t1 = typeid(int); local
27 assert(std::hash<std::type_index>()(t1) == t1.hash_code());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/
ctor.pass.cpp 21 std::type_index t1 = typeid(int); local
  /external/clang/test/PCH/
cxx-static_assert.cpp 18 T<1> t1; // expected-note {{in instantiation of template class 'T<1>' requested here}} variable
  /external/clang/test/Sema/
ms-inline-asm.c 4 void t1(void) { function
sign-conversion.c 7 unsigned t1 = (t0 == 5 ? x : 0); // expected-warning {{operand of ? changes signedness}} local
  /external/dropbear/libtomcrypt/src/pk/ecc/
ltc_ecc_map.c 35 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, t2, NULL)
    [all...]
ltc_ecc_projective_dbl_point.c 36 void *t1, *t2; local
44 if ((err = mp_init_multi(&t1, &t2, NULL)) != CRYPT_OK) {
54 /* t1 = Z * Z */
55 if ((err = mp_sqr(R->z, t1)) != CRYPT_OK) { goto done; }
56 if ((err = mp_montgomery_reduce(t1, modulus, mp)) != CRYPT_OK) { goto done; }
66 /* T2 = X - T1 */
67 if ((err = mp_sub(R->x, t1, t2)) != CRYPT_OK) { goto done; }
71 /* T1 = X + T1 */
72 if ((err = mp_add(t1, R->x, t1)) != CRYPT_OK) { goto done;
    [all...]
  /external/dropbear/libtommath/
bn_mp_lcm.c 22 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);
bn_mp_sqrt.c 22 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)) != MP_OKAY)
    [all...]
  /external/eigen/test/
zerosized.cpp 14 MatrixType t1; local
19 VERIFY(t1.rows() == 0);
21 VERIFY(t1.cols() == 0);
34 VectorType t1; local
38 VERIFY(t1.size() == 0);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/type.info/
type_info.pass.cpp 18 const std::type_info& t1 = typeid(int); local
20 assert(t1 == t2);
22 assert(t1 != t3);
23 assert(!t1.before(t2));
24 assert(strcmp(t1.name(), t2.name()) == 0);
25 assert(strcmp(t1.name(), t3.name()) != 0);
type_info_hash.pass.cpp 18 const std::type_info& t1 = typeid(int); local
21 assert(t1.hash_code() == t2.hash_code());
22 assert(t1.hash_code() != t3.hash_code());

Completed in 1489 milliseconds

1 2 3 4 5 6 7 8 91011>>