HomeSort by relevance Sort by last modified time
    Searched refs:U2 (Results 1 - 25 of 76) sorted by null

1 2 3 4

  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.ctor/
move_convert.runtime.pass.cpp 39 using U2 = std::unique_ptr<A[], GenericConvertingDeleter<1> >;
40 static_assert(std::is_constructible<U1, U2&&>::value, "");
41 static_assert(!std::is_constructible<U1, U2&>::value, "");
42 static_assert(!std::is_constructible<U1, const U2&>::value, "");
43 static_assert(!std::is_constructible<U1, const U2&&>::value, "");
47 using U2 = std::unique_ptr<A[]>;
48 static_assert(std::is_constructible<U1, U2&&>::value, "");
49 static_assert(!std::is_constructible<U2, U1&&>::value, "");
63 using U2 = std::unique_ptr<A[], GenericDeleter<1> >;
64 static_assert(!std::is_constructible<U1, U2&&>::value, "")
    [all...]
default.pass.cpp 58 using U2 = std::unique_ptr<ElemType, Del&>;
61 static_assert(!std::is_default_constructible<U2>::value, "");
72 using U2 = std::unique_ptr<ElemType, Deleter<ElemType> >;
74 static_assert(std::is_nothrow_default_constructible<U2>::value, "");
move_convert.pass.cpp 107 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<1> >;
108 static_assert(std::is_constructible<U1, U2&&>::value, "");
113 using U2 = std::unique_ptr<VT, GenericDeleter<1> >;
114 static_assert(!std::is_constructible<U1, U2&&>::value, "");
119 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<0> >;
123 static_assert(!std::is_constructible<U1, U2&&>::value, "");
135 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<0> &>;
140 static_assert(std::is_constructible<U1, U2&&>::value, "");
185 using U2 = std::unique_ptr<VT, TD2 >;
186 U2 u2
    [all...]
nullptr.pass.cpp 41 using U2 = std::unique_ptr<VT, Deleter<VT> >;
44 static_assert(std::is_nothrow_constructible<U2, decltype(nullptr)>::value,
71 using U2 = std::unique_ptr<VT, Del&>;
74 static_assert(!std::is_constructible<U2, decltype(nullptr)>::value, "");
pointer.pass.cpp 47 using U2 = std::unique_ptr<ValueT, Deleter<ValueT> >;
51 static_assert(std::is_nothrow_constructible<U2, A*>::value, "");
55 static_assert(!std::is_convertible<A*, U2>::value, "");
120 using U2 = std::unique_ptr<T, Del&>;
123 static_assert(!std::is_constructible<U2, T*>::value, "");
  /external/clang/test/CXX/class/class.union/
p2-0x.cpp 22 union U2 {
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/epid-sdk/ext/ipp/sources/ippcp/
pcpgfpec_addaffine.c 88 BNU_CHUNK_T* U2 = pEC->pPool;
89 BNU_CHUNK_T* S2 = U2 + elemLen;
99 mul(U2, ax, R, pGFE); // U2 = X2*Z1^2
102 sub(H, U2, px, pGFE); // H = U2-X1
107 sqr(U2, H, pGFE); // U2 = H^2
109 mul(H, H, U2, pGFE); // H = H^3
111 mul(U2, U2, px, pGFE); // U2 = X1*H^
    [all...]
pcpgfpec_add.c 64 // U2 = x2*z1^2
67 // H = U2-U1
102 BNU_CHUNK_T* U2 = U1 + elemLen;
103 BNU_CHUNK_T* S1 = U2 + elemLen;
116 sqr(U2, pz1, pGFE); // U2 = Z1^2
119 mul(S2, S2, U2, pGFE); // S2 = Y2*Z1^3
122 mul(U2, px2, U2, pGFE); // U2 = X2*Z1^
    [all...]
  /external/clang/test/CodeGen/
mcu-struct-return.c 13 union U2 {
15 } u2; variable in typeref:union:U2
39 union U2 foo2() { return u2; }
53 union U2 x2 = foo2();
xcore-stringtype.c 142 // CHECK: !"f{0}(u(U1){m(pu2){p(u(U2){m(pu3){p(u(U3){m(u1){u(U1){}}})}})}})"}
143 // CHECK: !{{[0-9]+}} = !{void (%union.U2*)* @unionType2,
144 // CHECK: !"f{0}(u(U2){m(pu3){p(u(U3){m(u1){u(U1){m(pu2){p(u(U2){})}}}})}})"}
146 // CHECK: !"f{0}(u(U3){m(u1){u(U1){m(pu2){p(u(U2){m(pu3){p(u(U3){})}})}}}})"}
148 // CHECK: !"f{0}(u(U4){m(u1){u(U1){m(pu2){p(u(U2){m(pu3){p(u(U3){m(u1){u(U1){}}})}})}}}})"}
154 union U2;
155 union U1{union U2 *pu2;};
157 union U2{union U3 *pu3;};
161 void unionType2(union U2 u2) {
    [all...]
  /external/clang/test/SemaCXX/
inherit.cpp 23 union U2 {};
25 class G : public U2 { }; // expected-error{{unions cannot be base classes}}
err_typecheck_assign_const.cpp 53 struct U2 {
58 const U2 u2 = U2(); // expected-note{{non-static data member 'u2' declared const here}} member in struct:U3
67 u4.u3.u2.u1.a = 5; // expected-error{{cannot assign to non-static data member 'u2' with const-qualified type 'const U2'}}
  /external/mesa3d/src/compiler/glsl/glcpp/tests/
067-nested-ifdef-ifndef.c 7 #ifdef U2
35 #ifndef U2
  /external/clang/test/CodeGenCXX/
x86_64-arguments-avx.cpp 38 union U2 {
44 union U2;
  /external/libcxx/test/std/utilities/smartptr/unique.ptr/unique.ptr.class/unique.ptr.asgn/
move_convert.pass.cpp 187 using U2 = std::unique_ptr<VT, DSource>;
188 static_assert(std::is_nothrow_assignable<U1, U2&&>::value, "");
192 U2 u2(nullptr, dsource);
193 u1 = std::move(u2);
203 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<1> >;
204 static_assert(std::is_assignable<U1, U2&&>::value, "");
209 using U2 = std::unique_ptr<VT, GenericDeleter<1> >;
210 static_assert(!std::is_assignable<U1, U2&&>::value, "");
215 using U2 = std::unique_ptr<VT, GenericConvertingDeleter<0> >
327 U2 u2; local
336 U2 u2; local
345 U2 u2; local
    [all...]
  /external/libcxx/test/std/utilities/meta/meta.unary/meta.unary.prop/
is_final.pass.cpp 20 union U2 final { };
60 test_is_final <U2>();
61 test_is_not_final<U2*>();
  /external/libcxx/test/std/numerics/numeric.ops/numeric.ops.gcd/
gcd.pass.cpp 58 using U2 = std::make_unsigned_t<Input2>;
73 using Output = std::common_type_t<U1, U2>;
74 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect);
75 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect);
78 using Output = std::common_type_t<S1, U2>;
79 accumulate &= test0<S1, U2, Output>(TC.x, TC.y, TC.expect);
80 accumulate &= test0<U2, S1, Output>(TC.x, TC.y, TC.expect);
81 accumulate &= test0<S1, U2, Output>(-TC.x, TC.y, TC.expect);
82 accumulate &= test0<U2, S1, Output>(TC.x, -TC.y, TC.expect);
  /external/libcxx/test/std/numerics/numeric.ops/numeric.ops.lcm/
lcm.pass.cpp 57 using U2 = std::make_unsigned_t<Input2>;
72 using Output = std::common_type_t<U1, U2>;
73 accumulate &= test0<U1, U2, Output>(TC.x, TC.y, TC.expect);
74 accumulate &= test0<U2, U1, Output>(TC.x, TC.y, TC.expect);
77 using Output = std::common_type_t<S1, U2>;
78 accumulate &= test0<S1, U2, Output>(TC.x, TC.y, TC.expect);
79 accumulate &= test0<U2, S1, Output>(TC.x, TC.y, TC.expect);
80 accumulate &= test0<S1, U2, Output>(-TC.x, TC.y, TC.expect);
81 accumulate &= test0<U2, S1, Output>(TC.x, -TC.y, TC.expect);
  /external/compiler-rt/lib/asan/tests/
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");
227 TestAsmRead<U2>("READ of size 2");
262 TestAsmRepMovs<U2>("READ of size 2", "WRITE of size 2");
asan_test_utils.h 59 typedef uint16_t U2;
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DataExtractor.h 24 Uint24(uint8_t U0, uint8_t U1, uint8_t U2) {
25 Bytes[0] = U0; Bytes[1] = U1; Bytes[2] = U2;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/custom/sec/
SecP192K1Point.java 99 int[] U2, S2;
102 U2 = X2.x;
110 U2 = t2;
111 SecP192K1Field.multiply(S2, X2.x, U2);
137 SecP192K1Field.subtract(U1, U2, H);
SecP192R1Point.java 98 int[] U2, S2;
101 U2 = X2.x;
109 U2 = t2;
110 SecP192R1Field.multiply(S2, X2.x, U2);
136 SecP192R1Field.subtract(U1, U2, H);
SecP224K1Point.java 99 int[] U2, S2;
102 U2 = X2.x;
110 U2 = t2;
111 SecP224K1Field.multiply(S2, X2.x, U2);
137 SecP224K1Field.subtract(U1, U2, H);
SecP224R1Point.java 97 int[] U2, S2;
100 U2 = X2.x;
108 U2 = t2;
109 SecP224R1Field.multiply(S2, X2.x, U2);
135 SecP224R1Field.subtract(U1, U2, H);

Completed in 3310 milliseconds

1 2 3 4