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

1 2 3 4 5 6 7 8 91011>>

  /external/clang/test/CXX/except/except.spec/
template.cpp 9 void (*t2)() throw() = &f1<0>; // expected-error {{not superset}} variable
  /external/clang/test/CodeGen/
2006-01-16-BitCountIntrinsicsUnsigned.c 3 unsigned t2(unsigned X) { function
4 // CHECK: t2
attr-naked.c 14 // CHECK: define void @t2() [[NAKED]] {
15 __attribute((naked, always_inline)) void t2() { function
vla-4.c 13 void t2() { function
arm-neon-misc.c 24 void t2(uint64_t *src1, uint8_t *src2, uint64x2_t *dst) { function
25 // CHECK: @t2
arm-vaarg-align.c 22 double t2(int i, ...) { function
23 // AAPCS: t2
24 // APCS-GNU: t2
arm-vector-align.c 24 void t2(char *addr) { function
25 // CHECK: @t2
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.overview/
copy_ctor.pass.cpp 22 std::type_index t2 = t1; local
23 assert(t2 == t1);
  /external/clang/test/PCH/
cxx-static_assert.cpp 19 T<2> t2; variable
  /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) {
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);
ltc_ecc_projective_dbl_point.c 36 void *t1, *t2; local
44 if ((err = mp_init_multi(&t1, &t2, NULL)) != CRYPT_OK) {
66 /* T2 = X - T1 */
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; }
76 /* T2 = T1 * T2 */
77 if ((err = mp_mul(t1, t2, t2)) != 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) {
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, c)
    [all...]
bn_mp_sqrt.c 22 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);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/language.support/support.rtti/type.info/
type_info.pass.cpp 19 const std::type_info& t2 = typeid(int); local
20 assert(t1 == t2);
23 assert(!t1.before(t2));
24 assert(strcmp(t1.name(), t2.name()) == 0);
type_info_hash.pass.cpp 19 const std::type_info& t2 = typeid(int); local
21 assert(t1.hash_code() == t2.hash_code());
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/re/re.traits/
default.pass.cpp 27 std::regex_traits<wchar_t> t2; local
28 assert(t2.getloc().name() == "C");
34 std::regex_traits<wchar_t> t2; local
35 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
getloc.pass.cpp 26 std::regex_traits<wchar_t> t2; local
27 assert(t2.getloc().name() == "C");
33 std::regex_traits<wchar_t> t2; local
34 assert(t2.getloc().name() == LOCALE_en_US_UTF_8);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/bind/func.bind/func.bind.place/
placeholders.pass.cpp 20 T t2; local
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.clock/time.clock.steady/
now.pass.cpp 23 C::time_point t2 = C::now(); local
24 assert(t2 >= t1);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/type.index/type.index.members/
eq.pass.cpp 23 std::type_index t2 = typeid(int); local
25 assert(t1 == t2);
lt.pass.cpp 25 std::type_index t2 = typeid(int); local
27 assert(!(t1 < t2));
28 assert( (t1 <= t2));
29 assert(!(t1 > t2));
30 assert( (t1 >= t2));
  /external/clang/test/CodeCompletion/
documentation.cpp 8 class T2 {
22 T2 t2; local
23 t2.
28 // CHECK-CC1: COMPLETION: T2 : T2 : Bbb.
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/input.output/iostream.forward/
iosfwd.pass.cpp 19 std::char_traits<wchar_t>* t2 = 0; local
24 std::basic_ios<wchar_t>* t2 = 0; local
29 std::basic_streambuf<wchar_t>* t2 = 0; local
34 std::basic_istream<wchar_t>* t2 = 0; local
39 std::basic_ostream<wchar_t>* t2 = 0; local
44 std::basic_iostream<wchar_t>* t2 = 0; local
49 std::basic_stringbuf<wchar_t>* t2 = 0; local
54 std::basic_istringstream<wchar_t>* t2 = 0; local
59 std::basic_ostringstream<wchar_t>* t2 = 0; local
64 std::basic_stringstream<wchar_t>* t2 = 0 local
69 std::basic_filebuf<wchar_t>* t2 = 0; local
74 std::basic_ifstream<wchar_t>* t2 = 0; local
79 std::basic_ofstream<wchar_t>* t2 = 0; local
84 std::basic_fstream<wchar_t>* t2 = 0; local
89 std::istreambuf_iterator<wchar_t>* t2 = 0; local
94 std::ostreambuf_iterator<wchar_t>* t2 = 0; local
99 std::wios* t2 = 0; local
103 std::istream* t2 = 0; local
109 std::istringstream* t2 = 0; local
115 std::ifstream* t2 = 0; local
121 std::wistream* t2 = 0; local
127 std::wistringstream* t2 = 0; local
133 std::wifstream* t2 = 0; local
139 std::streampos* t2 = 0; local
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/time/time.point/time.point.nonmember/
op_+.pass.cpp 31 std::chrono::time_point<Clock, Duration2> t2 = t1 + Duration2(5); local
32 assert(t2.time_since_epoch() == Duration2(3005));
33 t2 = Duration2(6) + t1;
34 assert(t2.time_since_epoch() == Duration2(3006));
op_-duration.pass.cpp 27 std::chrono::time_point<Clock, Duration2> t2 = t1 - Duration2(5); local
28 assert(t2.time_since_epoch() == Duration2(2995));

Completed in 195 milliseconds

1 2 3 4 5 6 7 8 91011>>