Searched defs:T2 (Results 1 - 25 of 50) sorted by relevance

12

/external/clang/test/SemaCXX/
H A DPR10243.cpp15 struct T2 { struct
17 T2& operator=(T2&) = default;
H A Daccess-base-class.cpp13 namespace T2 { namespace
19 A *a = b; // expected-error {{cannot cast 'T2::B' to its private base class 'T2::A'}}
H A Dtrivial-constructor.cpp6 struct T2 { struct
7 T2();
9 static_assert(!__has_trivial_constructor(T2), "T2 has a user-declared constructor!");
27 static T2 t2;
36 struct T8 : T2 {
38 static_assert(!__has_trivial_constructor(T8), "The base class T2 does not have a trivial constructor!");
H A Dtrivial-destructor.cpp6 struct T2 { struct
7 ~T2();
9 static_assert(!__has_trivial_destructor(T2), "T2 has a user-declared destructor!");
27 static T2 t2;
32 T2 t2;
36 struct T8 : T2 {
38 static_assert(!__has_trivial_destructor(T8), "The base class T2 does not have a trivial destructor!");
H A Dvirtual-override.cpp14 namespace T2 { namespace
24 virtual b* f(); // expected-error{{return type of virtual function 'f' is not covariant with the return type of the function it overrides ('T2::b *' is not derived from 'T2::a *')}}
/external/clang/test/CodeGenCXX/
H A D2009-03-17-dbg.cpp3 template <typename T1,typename T2>
4 inline void f(const T1&,const T2&) { } argument
6 template <typename T1,typename T2,void F(const T1&,const T2&)>
H A Dnew.cpp44 struct T2 { struct
46 T2(int, int);
51 T2 *t2 = new T2(10, 10);
206 // CHECK-NEXT: [[T2:%.*]] = select i1 [[T1]], i64 -1, i64 [[T0]]
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp6.cpp61 template<typename T> struct T2 : virtual T { // expected-note {{struct with virtual base class is not a literal type}} expected-note {{here}} struct in namespace:TemplateVBase
64 constexpr T2(); // desired-error {{constexpr constructor not allowed in class with virtual base classes}}
66 constexpr T2<Literal> g2(); // expected-error {{not a literal type}}
/external/llvm/utils/TableGen/
H A DDAGISelMatcher.cpp339 MVT::SimpleValueType T2) {
342 if (T1 == T2) return false;
347 return !MVT(T2).isInteger() || MVT(T2).isVector();
349 if (T2 == MVT::iPTR)
338 TypesAreContradictory(MVT::SimpleValueType T1, MVT::SimpleValueType T2) argument
/external/clang/test/PCH/
H A Dchain-cxx.cpp116 typedef S<double *>::H T2; typedef
/external/dropbear/libtomcrypt/src/ciphers/
H A Dkhazad.c174 static const ulong64 T2[256] = { variable
646 T2[(int)(K1 >> 40) & 0xff] ^
665 T2[(int)S[(int)(K1 >> 40) & 0xff] & 0xff] ^
703 T2[(int)(state >> 40) & 0xff] ^
718 (T2[(int)(state >> 40) & 0xff] & CONST64(0x0000ff0000000000)) ^
H A Dkseed.c189 T2 = G((R1 ^ K1) ^ (R2 ^ K2)); \
190 T = G( G(T2 + (R1 ^ K1)) + T2); \
192 L1 ^= (T + G(T2 + (R1 ^ K1))); \
243 ulong32 T, T2; local
H A Danubis.c187 static const ulong32 T2[256] = { variable
605 static const ulong32 T2[256] = { variable
998 inter[i] ^= T2[(kappa[j--] >> 8) & 0xff]; if (j < 0) j = N - 1;
1020 T2[T4[(v >> 8) & 0xff] & 0xff] ^
1065 T2[(state[2] >> 24) & 0xff] ^
1071 T2[(state[2] >> 16) & 0xff] ^
1077 T2[(state[2] >> 8) & 0xff] ^
1083 T2[(state[2] ) & 0xff] ^
1098 (T2[(state[2] >> 24) & 0xff] & 0x0000ff00U) ^
1104 (T2[(stat
[all...]
/external/srtp/crypto/cipher/
H A Daes.c51 * we use the tables T0, T1, T2, T3, and T4 to compute AES, and
198 static uint32_t T2[256] = { variable
736 static uint32_t T2[256] = { variable
1509 of state, using the tables T0, T1, T2, T3 */
1512 ^ T2[state->v8[10]] ^ T3[state->v8[15]];
1515 ^ T2[state->v8[14]] ^ T3[state->v8[3]];
1518 ^ T2[state->v8[2]] ^ T3[state->v8[7]];
1521 ^ T2[state->v8[6]] ^ T3[state->v8[11]];
1637 of state, using the tables T0, T1, T2, T3 */
1640 ^ T2[(stat
[all...]
/external/srtp/tables/
H A Daes_tables.c54 uint32_t T0[256], T1[256], T2[256], T3[256], T4[256]; variable
122 T2[i] = tmp.value;
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-param-util-generated.h89 template <typename T1, typename T2>
92 ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {}
105 const T2 v2_;
108 template <typename T1, typename T2, typename T3>
111 ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {}
124 const T2 v2_;
128 template <typename T1, typename T2, typename T3, typename T4>
131 ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3),
145 const T2 v2_;
150 template <typename T1, typename T2, typenam
[all...]
/external/gtest/include/gtest/internal/
H A Dgtest-param-util-generated.h69 template <typename T1, typename T2>
72 ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {}
82 const T2 v2_;
85 template <typename T1, typename T2, typename T3>
88 ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {}
98 const T2 v2_;
102 template <typename T1, typename T2, typename T3, typename T4>
105 ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3),
116 const T2 v2_;
121 template <typename T1, typename T2, typenam
[all...]
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-param-util-generated.h91 template <typename T1, typename T2>
94 ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {}
107 const T2 v2_;
110 template <typename T1, typename T2, typename T3>
113 ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {}
126 const T2 v2_;
130 template <typename T1, typename T2, typename T3, typename T4>
133 ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3),
147 const T2 v2_;
152 template <typename T1, typename T2, typenam
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-param-util-generated.h72 template <typename T1, typename T2>
75 ValueArray2(T1 v1, T2 v2) : v1_(v1), v2_(v2) {}
88 const T2 v2_;
91 template <typename T1, typename T2, typename T3>
94 ValueArray3(T1 v1, T2 v2, T3 v3) : v1_(v1), v2_(v2), v3_(v3) {}
107 const T2 v2_;
111 template <typename T1, typename T2, typename T3, typename T4>
114 ValueArray4(T1 v1, T2 v2, T3 v3, T4 v4) : v1_(v1), v2_(v2), v3_(v3),
128 const T2 v2_;
133 template <typename T1, typename T2, typenam
[all...]
/external/bouncycastle/src/main/java/org/bouncycastle/crypto/engines/
H A DAESFastEngine.java222 private static final int[] T2 = field in class:AESFastEngine
817 r0 = T0[C0&255] ^ T1[(C1>>8)&255] ^ T2[(C2>>16)&255] ^ T3[(C3>>24)&255] ^ KW[r][0];
818 r1 = T0[C1&255] ^ T1[(C2>>8)&255] ^ T2[(C3>>16)&255] ^ T3[(C0>>24)&255] ^ KW[r][1];
819 r2 = T0[C2&255] ^ T1[(C3>>8)&255] ^ T2[(C0>>16)&255] ^ T3[(C1>>24)&255] ^ KW[r][2];
820 r3 = T0[C3&255] ^ T1[(C0>>8)&255] ^ T2[(C1>>16)&255] ^ T3[(C2>>24)&255] ^ KW[r++][3];
821 C0 = T0[r0&255] ^ T1[(r1>>8)&255] ^ T2[(r2>>16)&255] ^ T3[(r3>>24)&255] ^ KW[r][0];
822 C1 = T0[r1&255] ^ T1[(r2>>8)&255] ^ T2[(r3>>16)&255] ^ T3[(r0>>24)&255] ^ KW[r][1];
823 C2 = T0[r2&255] ^ T1[(r3>>8)&255] ^ T2[(r0>>16)&255] ^ T3[(r1>>24)&255] ^ KW[r][2];
824 C3 = T0[r3&255] ^ T1[(r0>>8)&255] ^ T2[(r1>>16)&255] ^ T3[(r2>>24)&255] ^ KW[r++][3];
827 r0 = T0[C0&255] ^ T1[(C1>>8)&255] ^ T2[(C
[all...]
/external/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp497 /// Returns true if token 'T1' or 'T2' was found.
499 bool Parser::ConsumeAndStoreUntil(tok::TokenKind T1, tok::TokenKind T2, argument
507 if (Tok.is(T1) || Tok.is(T2)) {
/external/clang/test/SemaTemplate/
H A Dtypename-specifier-4.cpp12 template<typename MetaFun, typename T1, typename T2>
14 typedef typename MetaFun::template apply<T1, T2> inner;
21 template<typename T1, typename T2>
23 typedef pair<T1, T2> type;
37 template<typename T1, typename T2>
39 typedef typename MetaFun::template apply<T2, T1> new_metafun;
49 template<typename T1, typename T2>
51 typedef typename MetaFun::template apply<T2, T1>::type type;
123 typedef typename T::Y T2; typedef in struct:PR7419::S
124 typedef typename T2
[all...]
/external/openssl/crypto/sha/
H A Dsha256.c153 unsigned MD32_REG_T a,b,c,d,e,f,g,h,s0,s1,T1,T2; local
167 T2 = Sigma0(a) + Maj(a,b,c);
169 d = c; c = b; b = a; a = T1 + T2;
179 T2 = Sigma0(a) + Maj(a,b,c);
181 d = c; c = b; b = a; a = T1 + T2;
H A Dsha512.c502 SHA_LONG64 a,b,c,d,e,f,g,h,s0,s1,T1,T2; local
519 T2 = Sigma0(a) + Maj(a,b,c);
521 d = c; c = b; b = a; a = T1 + T2;
531 T2 = Sigma0(a) + Maj(a,b,c);
533 d = c; c = b; b = a; a = T1 + T2;
/external/clang/test/CXX/temp/temp.decls/temp.variadic/
H A Dp5.cpp374 template<typename T1, typename T2> struct Pair {};
385 typedef zip<short>::with<unsigned short, unsigned>::type T2; // expected-note{{in instantiation of template class}} typedef in namespace:WorkingPaperExample

Completed in 999 milliseconds

12