/external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/ |
D | move_convert.runtime.pass.cpp | 39 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 …]
|
D | move_convert.pass.cpp | 107 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 …]
|
D | default.pass.cpp | 58 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()
|
D | nullptr.pass.cpp | 41 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()
|
D | pointer.pass.cpp | 47 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/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/ |
D | move_convert.pass.cpp | 187 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/clang/test/CXX/class/class.union/ |
D | p2-0x.cpp | 22 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/ |
D | gcd.pass.cpp | 58 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/ |
D | lcm.pass.cpp | 57 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/walt/hardware/kicad/ |
D | WALTsm.net | 55 (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/ |
D | aes.c | 481 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/v8/src/codegen/ |
D | tnode.h | 257 template <class T, class U1, class U2> 258 struct is_subtype<T, UnionT<U1, U2>> { 260 is_subtype<T, U1>::value || is_subtype<T, U2>::value; 262 template <class T1, class T2, class U1, class U2> 263 struct is_subtype<UnionT<T1, T2>, UnionT<U1, U2>> { 265 (is_subtype<T1, U1>::value || is_subtype<T1, U2>::value) && 266 (is_subtype<T2, U1>::value || is_subtype<T2, U2>::value); 307 template <class T, class U1, class U2> 308 struct types_have_common_values<T, UnionT<U1, U2>> { 310 types_have_common_values<T, U2>::value; [all …]
|
/external/clang/test/CodeGen/ |
D | mcu-struct-return.c | 13 union U2 { union 39 union U2 foo2() { return u2; } in foo2() 53 union U2 x2 = foo2(); in run()
|
D | xcore-stringtype.c | 154 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/ |
D | asan_asm_test.cc | 120 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()
|
/external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/ |
D | is_final.pass.cpp | 20 union U2 final { }; union 60 test_is_final <U2>(); in main() 61 test_is_not_final<U2*>(); in main()
|
/external/clang/test/SemaCXX/ |
D | err_typecheck_assign_const.cpp | 53 struct U2 { struct 58 const U2 u2 = U2(); // expected-note{{non-static data member 'u2' declared const here}} argument
|
D | inherit.cpp | 23 union U2 {}; union 25 class G : public U2 { }; // expected-error{{unions cannot be base classes}}
|
/external/clang/test/SemaObjC/ |
D | class-proto-1.m | 27 @class U1, U2; // expected-note {{forward declaration of class here}} 34 @interface U2 @end interface 36 @interface I4 : U2 <p1,p2>
|
/external/mesa3d/src/compiler/glsl/glcpp/tests/ |
D | 067-nested-ifdef-ifndef.c | 7 #ifdef U2 35 #ifndef U2
|
/external/clang/test/CodeGenCXX/ |
D | x86_64-arguments-avx.cpp | 38 union U2 { union 44 union U2;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/ |
D | SecP256R1Point.java | 97 int[] U2, S2; in add() local 100 U2 = X2.x; in add() 108 U2 = t2; in add() 109 SecP256R1Field.multiply(S2, X2.x, U2); in add() 135 SecP256R1Field.subtract(U1, U2, H); in add()
|
D | SecP224K1Point.java | 99 int[] U2, S2; in add() local 102 U2 = X2.x; in add() 110 U2 = t2; in add() 111 SecP224K1Field.multiply(S2, X2.x, U2); in add() 137 SecP224K1Field.subtract(U1, U2, H); in add()
|
D | SecP256K1Point.java | 99 int[] U2, S2; in add() local 102 U2 = X2.x; in add() 110 U2 = t2; in add() 111 SecP256K1Field.multiply(S2, X2.x, U2); in add() 137 SecP256K1Field.subtract(U1, U2, H); in add()
|
D | SecP224R1Point.java | 97 int[] U2, S2; in add() local 100 U2 = X2.x; in add() 108 U2 = t2; in add() 109 SecP224R1Field.multiply(S2, X2.x, U2); in add() 135 SecP224R1Field.subtract(U1, U2, H); in add()
|