/external/llvm-project/clang/test/SemaObjCXX/ |
D | arc-0x.mm | 143 union U3 { 145 U3(); 146 ~U3(); 147 U3(const U3 &); 148 U3(U3 &&); 149 U3 & operator=(const U3 &); 150 U3 & operator=(U3 &&); 187 U3 *x3; 211 U3 t3; 217 void testDestructor(U0 *u0, U1 *u1, U2 *u2, U3 *u3, S0 *s0, S1 *s1, S2 *s2) { [all …]
|
/external/libsrtp2/crypto/cipher/ |
D | aes.c | 550 static const uint32_t U3[256] = { variable 1103 static const uint32_t U3[256] = { variable 1587 U3[T4[(tmp) & 0xff] & 0xff]; in srtp_aes_expand_decryption_key() 1594 U3[T4[(tmp) & 0xff] & 0xff]; in srtp_aes_expand_decryption_key() 1601 U3[T4[(tmp) & 0xff] & 0xff]; in srtp_aes_expand_decryption_key() 1608 U3[T4[(tmp) & 0xff] & 0xff]; in srtp_aes_expand_decryption_key() 1612 U3[T4[(tmp >> 24) ] & 0xff] ^ in srtp_aes_expand_decryption_key() 1619 U3[T4[(tmp >> 24) ] & 0xff] ^ in srtp_aes_expand_decryption_key() 1626 U3[T4[(tmp >> 24) ] & 0xff] ^ in srtp_aes_expand_decryption_key() 1633 U3[T4[(tmp >> 24) ] & 0xff] ^ in srtp_aes_expand_decryption_key() [all …]
|
/external/llvm-project/clang/test/AST/ |
D | ast-dump-APValue-union.cpp | 32 union U3 { union 56 constexpr U3 u3a = {.f = 3.1415}; in Test() 60 constexpr U3 u3b = {.uinner = {}}; in Test()
|
/external/clang/test/CodeGen/ |
D | mcu-struct-return.c | 18 union U3 { union 40 union U3 foo3() { return u3; } in foo3() 54 union U3 x3 = foo3(); in run()
|
D | xcore-stringtype.c | 156 union U3; 157 union U2{union U3 *pu3;}; 158 union U3{union U1 u1;}; union 162 void unionType3(union U3 u3) {} in unionType3()
|
/external/llvm-project/clang/test/CodeGen/ |
D | mcu-struct-return.c | 18 union U3 { union 40 union U3 foo3() { return u3; } in foo3() 54 union U3 x3 = foo3(); in run()
|
D | xcore-stringtype.c | 156 union U3; 157 union U2{union U3 *pu3;}; 158 union U3{union U1 u1;}; union 162 void unionType3(union U3 u3) {} in unionType3()
|
/external/llvm-project/clang/test/CXX/class/class.union/ |
D | p2-0x.cpp | 33 union U3 { union 35 U3() : k(0) {} // expected-error {{does not name a non-static data member}} in U3() function
|
/external/clang/test/CXX/class/class.union/ |
D | p2-0x.cpp | 33 union U3 { union 35 U3() : k(0) {} // expected-error {{does not name a non-static data member}} in U3() function
|
/external/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/ |
D | move_convert.pass.cpp | 119 using U3 = std::unique_ptr<VT, GenericConvertingDeleter<0> &>; in test_sfinae() typedef 123 static_assert(!std::is_constructible<U1, U3&&>::value, ""); in test_sfinae() 135 using U3 = std::unique_ptr<VT, GenericConvertingDeleter<0> const &>; in test_sfinae() typedef 140 static_assert(std::is_constructible<U1, U3&&>::value, ""); in test_sfinae()
|
D | default.pass.cpp | 58 using U3 = std::unique_ptr<ElemType, Del const&>; in test_sfinae() typedef 61 static_assert(!std::is_default_constructible<U3>::value, ""); in test_sfinae()
|
D | nullptr.pass.cpp | 71 using U3 = std::unique_ptr<VT, Del const&>; in test_sfinae() typedef 74 static_assert(!std::is_constructible<U3, decltype(nullptr)>::value, ""); in test_sfinae()
|
D | pointer.pass.cpp | 120 using U3 = std::unique_ptr<T, Del const&>; in test_sfinae() typedef 123 static_assert(!std::is_constructible<U3, T*>::value, ""); in test_sfinae()
|
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/ |
D | move_convert.pass.cpp | 120 using U3 = std::unique_ptr<VT, GenericConvertingDeleter<0> &>; in test_sfinae() typedef 124 static_assert(!std::is_constructible<U1, U3&&>::value, ""); in test_sfinae() 136 using U3 = std::unique_ptr<VT, GenericConvertingDeleter<0> const &>; in test_sfinae() typedef 141 static_assert(std::is_constructible<U1, U3&&>::value, ""); in test_sfinae()
|
D | default.pass.cpp | 59 using U3 = std::unique_ptr<ElemType, Del const&>; in test_sfinae() typedef 62 static_assert(!std::is_default_constructible<U3>::value, ""); in test_sfinae()
|
D | nullptr.pass.cpp | 72 using U3 = std::unique_ptr<VT, Del const&>; in test_sfinae() typedef 75 static_assert(!std::is_constructible<U3, decltype(nullptr)>::value, ""); in test_sfinae()
|
D | pointer.pass.cpp | 121 using U3 = std::unique_ptr<T, Del const&>; in test_sfinae() typedef 124 static_assert(!std::is_constructible<U3, T*>::value, ""); in test_sfinae()
|
/external/clang/test/SemaCXX/ |
D | err_typecheck_assign_const.cpp | 57 struct U3 { struct 62 U3 u3; argument
|
/external/clang/test/SemaTemplate/ |
D | friend-template.cpp | 125 template<class U1, class U2, class U3, class T> 126 friend A<U1, U2, U3>& inner::f0(A<U1, U2, U3>&, T);
|
/external/llvm-project/clang/test/SemaTemplate/ |
D | friend-template.cpp | 125 template<class U1, class U2, class U3, class T> 126 friend A<U1, U2, U3>& inner::f0(A<U1, U2, U3>&, T);
|
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/ |
D | move_convert.pass.cpp | 216 using U3 = std::unique_ptr<VT, GenericConvertingDeleter<0> &>; in test_sfinae() typedef 220 static_assert(!std::is_assignable<U1, U3&&>::value, ""); in test_sfinae() 231 using U3 = std::unique_ptr<VT, GenericConvertingDeleter<0> &>; in test_sfinae() typedef 236 static_assert(std::is_nothrow_assignable<U1, U3&&>::value, ""); in test_sfinae() 248 using U3 = std::unique_ptr<VT, GenericConvertingDeleter<0> const &>; in test_sfinae() typedef 253 static_assert(std::is_assignable<U1, U3&&>::value, ""); in test_sfinae()
|
/external/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/ |
D | move_convert.pass.cpp | 215 using U3 = std::unique_ptr<VT, GenericConvertingDeleter<0> &>; in test_sfinae() typedef 219 static_assert(!std::is_assignable<U1, U3&&>::value, ""); in test_sfinae() 230 using U3 = std::unique_ptr<VT, GenericConvertingDeleter<0> &>; in test_sfinae() typedef 235 static_assert(std::is_nothrow_assignable<U1, U3&&>::value, ""); in test_sfinae() 247 using U3 = std::unique_ptr<VT, GenericConvertingDeleter<0> const &>; in test_sfinae() typedef 252 static_assert(std::is_assignable<U1, U3&&>::value, ""); in test_sfinae()
|
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/ |
D | rijndael-alg-fst.c | 112 ^ *((const word32*)U3[w[2]]) in rijndaelKeyEncToDec() 119 ^ *((const word32*)U3[w[2]]) in rijndaelKeyEncToDec() 126 ^ *((const word32*)U3[w[2]]) in rijndaelKeyEncToDec() 133 ^ *((const word32*)U3[w[2]]) in rijndaelKeyEncToDec() 449 ^ *((const word32*)U3[a[0][2]]) in rijndaelDecryptRound() 455 ^ *((const word32*)U3[a[1][2]]) in rijndaelDecryptRound() 461 ^ *((const word32*)U3[a[2][2]]) in rijndaelDecryptRound() 467 ^ *((const word32*)U3[a[3][2]]) in rijndaelDecryptRound()
|
/external/llvm-project/clang/test/SemaCXX/ |
D | err_typecheck_assign_const.cpp | 57 struct U3 { struct 62 U3 u3; argument
|
/external/clang/utils/VtableTest/ |
D | check-zvt | 11 diff -U3 test-gcc-ztv test-clang-ztv
|