Home
last modified time | relevance | path

Searched refs:U2 (Results 1 – 25 of 189) sorted by relevance

12345678

/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
Dmove_convert.runtime.pass.cpp39 using U2 = std::unique_ptr<A[], GenericConvertingDeleter<1> >; in test_sfinae() typedef
40 static_assert(std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
41 static_assert(!std::is_constructible<U1, U2&>::value, ""); in test_sfinae()
42 static_assert(!std::is_constructible<U1, const U2&>::value, ""); in test_sfinae()
43 static_assert(!std::is_constructible<U1, const U2&&>::value, ""); in test_sfinae()
47 using U2 = std::unique_ptr<A[]>; in test_sfinae() typedef
48 static_assert(std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
49 static_assert(!std::is_constructible<U2, U1&&>::value, ""); in test_sfinae()
63 using U2 = std::unique_ptr<A[], GenericDeleter<1> >; in test_sfinae() typedef
64 static_assert(!std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
[all …]
Dmove_convert.pass.cpp107 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef
108 static_assert(std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
113 using U2 = std::unique_ptr<VT, GenericDeleter<1> >; in test_sfinae() typedef
114 static_assert(!std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
119 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<0> >; in test_sfinae() typedef
123 static_assert(!std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
135 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<0> &>; in test_sfinae() typedef
140 static_assert(std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
185 using U2 = std::unique_ptr<VT, TD2 >; in test_deleter_value_category() typedef
186 U2 u2; in test_deleter_value_category()
[all …]
Ddefault.pass.cpp58 using U2 = std::unique_ptr<ElemType, Del&>; in test_sfinae() typedef
61 static_assert(!std::is_default_constructible<U2>::value, ""); in test_sfinae()
72 using U2 = std::unique_ptr<ElemType, Deleter<ElemType> >; in test_basic() typedef
74 static_assert(std::is_nothrow_default_constructible<U2>::value, ""); in test_basic()
Dnullptr.pass.cpp41 using U2 = std::unique_ptr<VT, Deleter<VT> >; in test_basic() typedef
44 static_assert(std::is_nothrow_constructible<U2, decltype(nullptr)>::value, in test_basic()
71 using U2 = std::unique_ptr<VT, Del&>; in test_sfinae() typedef
74 static_assert(!std::is_constructible<U2, decltype(nullptr)>::value, ""); in test_sfinae()
Dpointer.pass.cpp47 using U2 = std::unique_ptr<ValueT, Deleter<ValueT> >; in test_pointer() typedef
51 static_assert(std::is_nothrow_constructible<U2, A*>::value, ""); in test_pointer()
55 static_assert(!std::is_convertible<A*, U2>::value, ""); in test_pointer()
120 using U2 = std::unique_ptr<T, Del&>; in test_sfinae() typedef
123 static_assert(!std::is_constructible<U2, T*>::value, ""); in test_sfinae()
/external/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
Dmove_convert.runtime.pass.cpp39 using U2 = std::unique_ptr<A[], GenericConvertingDeleter<1> >; in test_sfinae() typedef
40 static_assert(std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
41 static_assert(!std::is_constructible<U1, U2&>::value, ""); in test_sfinae()
42 static_assert(!std::is_constructible<U1, const U2&>::value, ""); in test_sfinae()
43 static_assert(!std::is_constructible<U1, const U2&&>::value, ""); in test_sfinae()
47 using U2 = std::unique_ptr<A[]>; in test_sfinae() typedef
48 static_assert(std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
49 static_assert(!std::is_constructible<U2, U1&&>::value, ""); in test_sfinae()
63 using U2 = std::unique_ptr<A[], GenericDeleter<1> >; in test_sfinae() typedef
64 static_assert(!std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
[all …]
Dmove_convert.pass.cpp106 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef
107 static_assert(std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
112 using U2 = std::unique_ptr<VT, GenericDeleter<1> >; in test_sfinae() typedef
113 static_assert(!std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
118 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<0> >; in test_sfinae() typedef
122 static_assert(!std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
134 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<0> &>; in test_sfinae() typedef
139 static_assert(std::is_constructible<U1, U2&&>::value, ""); in test_sfinae()
184 using U2 = std::unique_ptr<VT, TD2 >; in test_deleter_value_category() typedef
185 U2 u2; in test_deleter_value_category()
[all …]
Ddefault.pass.cpp57 using U2 = std::unique_ptr<ElemType, Del&>; in test_sfinae() typedef
60 static_assert(!std::is_default_constructible<U2>::value, ""); in test_sfinae()
71 using U2 = std::unique_ptr<ElemType, Deleter<ElemType> >; in test_basic() typedef
73 static_assert(std::is_nothrow_default_constructible<U2>::value, ""); in test_basic()
Dnullptr.pass.cpp40 using U2 = std::unique_ptr<VT, Deleter<VT> >; in test_basic() typedef
43 static_assert(std::is_nothrow_constructible<U2, decltype(nullptr)>::value, in test_basic()
70 using U2 = std::unique_ptr<VT, Del&>; in test_sfinae() typedef
73 static_assert(!std::is_constructible<U2, decltype(nullptr)>::value, ""); in test_sfinae()
Dpointer.pass.cpp46 using U2 = std::unique_ptr<ValueT, Deleter<ValueT> >; in test_pointer() typedef
50 static_assert(std::is_nothrow_constructible<U2, A*>::value, ""); in test_pointer()
54 static_assert(!std::is_convertible<A*, U2>::value, ""); in test_pointer()
119 using U2 = std::unique_ptr<T, Del&>; in test_sfinae() typedef
122 static_assert(!std::is_constructible<U2, T*>::value, ""); in test_sfinae()
/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
Dmove_convert.pass.cpp187 using U2 = std::unique_ptr<VT, DSource>; in doDeleterTest() typedef
188 static_assert(std::is_nothrow_assignable<U1, U2&&>::value, ""); in doDeleterTest()
192 U2 u2(nullptr, dsource); in doDeleterTest()
203 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef
204 static_assert(std::is_assignable<U1, U2&&>::value, ""); in test_sfinae()
209 using U2 = std::unique_ptr<VT, GenericDeleter<1> >; in test_sfinae() typedef
210 static_assert(!std::is_assignable<U1, U2&&>::value, ""); in test_sfinae()
215 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<0> >; in test_sfinae() typedef
219 static_assert(!std::is_assignable<U1, U2&&>::value, ""); in test_sfinae()
230 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<0> >; in test_sfinae() typedef
[all …]
/external/llvm-project/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
Dmove_convert.pass.cpp186 using U2 = std::unique_ptr<VT, DSource>; in doDeleterTest() typedef
187 static_assert(std::is_nothrow_assignable<U1, U2&&>::value, ""); in doDeleterTest()
191 U2 u2(nullptr, dsource); in doDeleterTest()
202 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<1> >; in test_sfinae() typedef
203 static_assert(std::is_assignable<U1, U2&&>::value, ""); in test_sfinae()
208 using U2 = std::unique_ptr<VT, GenericDeleter<1> >; in test_sfinae() typedef
209 static_assert(!std::is_assignable<U1, U2&&>::value, ""); in test_sfinae()
214 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<0> >; in test_sfinae() typedef
218 static_assert(!std::is_assignable<U1, U2&&>::value, ""); in test_sfinae()
229 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<0> >; in test_sfinae() typedef
[all …]
/external/llvm-project/clang/test/CXX/class/class.union/
Dp2-0x.cpp22 union U2 { union
27 template<typename T> constexpr int U2<T>::k1 = sizeof(U2<T>);
28 template<typename T> double U2<T>::k2 = 5.3;
30 static_assert(U2<int>::k1 == sizeof(int), "");
31 static_assert(U2<char>::k1 == sizeof(char), "");
/external/clang/test/CXX/class/class.union/
Dp2-0x.cpp22 union U2 { union
27 template<typename T> constexpr int U2<T>::k1 = sizeof(U2<T>);
28 template<typename T> double U2<T>::k2 = 5.3;
30 static_assert(U2<int>::k1 == sizeof(int), "");
31 static_assert(U2<char>::k1 == sizeof(char), "");
/external/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/
Dgcd.pass.cpp58 using U2 = std::make_unsigned_t<Input2>; in do_test() typedef
73 using Output = std::common_type_t<U1, U2>; in do_test()
74 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect); in do_test()
75 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect); in do_test()
78 using Output = std::common_type_t<S1, U2>; in do_test()
79 accumulate &= test0<S1, U2, Output>(TC.x, TC.y, TC.expect); in do_test()
80 accumulate &= test0<U2, S1, Output>(TC.x, TC.y, TC.expect); in do_test()
81 accumulate &= test0<S1, U2, Output>(-TC.x, TC.y, TC.expect); in do_test()
82 accumulate &= test0<U2, S1, Output>(TC.x, -TC.y, TC.expect); in do_test()
/external/llvm-project/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/
Dgcd.pass.cpp58 using U2 = std::make_unsigned_t<Input2>; in do_test() typedef
73 using Output = std::common_type_t<U1, U2>; in do_test()
74 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect); in do_test()
75 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect); in do_test()
78 using Output = std::common_type_t<S1, U2>; in do_test()
79 accumulate &= test0<S1, U2, Output>(TC.x, TC.y, TC.expect); in do_test()
80 accumulate &= test0<U2, S1, Output>(TC.x, TC.y, TC.expect); in do_test()
81 accumulate &= test0<S1, U2, Output>(-TC.x, TC.y, TC.expect); in do_test()
82 accumulate &= test0<U2, S1, Output>(TC.x, -TC.y, TC.expect); in do_test()
/external/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/
Dlcm.pass.cpp57 using U2 = std::make_unsigned_t<Input2>; in do_test() typedef
72 using Output = std::common_type_t<U1, U2>; in do_test()
73 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect); in do_test()
74 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect); in do_test()
77 using Output = std::common_type_t<S1, U2>; in do_test()
78 accumulate &= test0<S1, U2, Output>(TC.x, TC.y, TC.expect); in do_test()
79 accumulate &= test0<U2, S1, Output>(TC.x, TC.y, TC.expect); in do_test()
80 accumulate &= test0<S1, U2, Output>(-TC.x, TC.y, TC.expect); in do_test()
81 accumulate &= test0<U2, S1, Output>(TC.x, -TC.y, TC.expect); in do_test()
/external/llvm-project/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/
Dlcm.pass.cpp55 using U2 = std::make_unsigned_t<Input2>; in do_test() typedef
70 using Output = std::common_type_t<U1, U2>; in do_test()
71 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect); in do_test()
72 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect); in do_test()
75 using Output = std::common_type_t<S1, U2>; in do_test()
76 accumulate &= test0<S1, U2, Output>(TC.x, TC.y, TC.expect); in do_test()
77 accumulate &= test0<U2, S1, Output>(TC.x, TC.y, TC.expect); in do_test()
78 accumulate &= test0<S1, U2, Output>(-TC.x, TC.y, TC.expect); in do_test()
79 accumulate &= test0<U2, S1, Output>(TC.x, -TC.y, TC.expect); in do_test()
/external/walt/hardware/kicad/
DWALTsm.net55 (comp (ref U2)
340 (net (code 12) (name "Net-(U2-Pad2)")
341 (node (ref U2) (pin 2)))
347 (node (ref U2) (pin 14))
348 (node (ref U2) (pin 15)))
356 (node (ref U2) (pin 6))
358 (node (ref U2) (pin 5))
359 (node (ref U2) (pin 3))
362 (node (ref U2) (pin 7))
373 (node (ref U2) (pin 17))
[all …]
/external/libsrtp2/crypto/cipher/
Daes.c481 static const uint32_t U2[256] = { variable
1034 static const uint32_t U2[256] = { variable
1586 U2[T4[(tmp >> 8) & 0xff] & 0xff] ^ in srtp_aes_expand_decryption_key()
1593 U2[T4[(tmp >> 8) & 0xff] & 0xff] ^ in srtp_aes_expand_decryption_key()
1600 U2[T4[(tmp >> 8) & 0xff] & 0xff] ^ in srtp_aes_expand_decryption_key()
1607 U2[T4[(tmp >> 8) & 0xff] & 0xff] ^ in srtp_aes_expand_decryption_key()
1613 U2[T4[(tmp >> 16) & 0xff] & 0xff] ^ in srtp_aes_expand_decryption_key()
1620 U2[T4[(tmp >> 16) & 0xff] & 0xff] ^ in srtp_aes_expand_decryption_key()
1627 U2[T4[(tmp >> 16) & 0xff] & 0xff] ^ in srtp_aes_expand_decryption_key()
1634 U2[T4[(tmp >> 16) & 0xff] & 0xff] ^ in srtp_aes_expand_decryption_key()
[all …]
/external/clang/test/CodeGen/
Dmcu-struct-return.c13 union U2 { union
39 union U2 foo2() { return u2; } in foo2()
53 union U2 x2 = foo2(); in run()
Dxcore-stringtype.c154 union U2;
155 union U1{union U2 *pu2;};
157 union U2{union U3 *pu3;}; union
161 void unionType2(union U2 u2) {} in unionType2()
/external/llvm-project/clang/test/CodeGen/
Dmcu-struct-return.c13 union U2 { union
39 union U2 foo2() { return u2; } in foo2()
53 union U2 x2 = foo2(); in run()
Dxcore-stringtype.c154 union U2;
155 union U1{union U2 *pu2;};
157 union U2{union U3 *pu3;}; union
161 void unionType2(union U2 u2) {} in unionType2()
/external/compiler-rt/lib/asan/tests/
Dasan_asm_test.cc120 DECLARE_ASM_WRITE(U2, "2", "movw", "r");
125 DECLARE_ASM_READ(U2, "2", "movw", "=r");
130 DECLARE_ASM_REP_MOVS(U2, "movsw");
219 TestAsmWrite<U2>("WRITE of size 2"); in TEST()
227 TestAsmRead<U2>("READ of size 2"); in TEST()
262 TestAsmRepMovs<U2>("READ of size 2", "WRITE of size 2"); in TEST()

12345678