Searched refs:U2 (Results 1 - 25 of 40) sorted by relevance

12

/external/clang/test/CXX/class/class.union/
H A 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), "");
H A Dp1.cpp50 union U2 { union
/external/chromium_org/third_party/mesa/src/src/glsl/glcpp/tests/
H A D067-nested-ifdef-ifndef.c7 #ifdef U2
35 #ifndef U2
/external/clang/test/SemaCXX/
H A Dinherit.cpp23 union U2 {}; union
25 class G : public U2 { }; // expected-error{{unions cannot be base classes}}
H A Dclass.cpp134 template <typename U1, typename U2> struct bar {
/external/mesa3d/src/glsl/glcpp/tests/
H A D067-nested-ifdef-ifndef.c7 #ifdef U2
35 #ifndef U2
/external/chromium_org/third_party/opus/src/src/
H A Dmlp_train.h64 float U1, U2, S, x; local
67 U2 = ((float)rand())/RAND_MAX;
69 U2 = 2*U2-1;
70 S = U1*U1 + U2*U2;
/external/libcxx/test/utilities/meta/meta.unary/meta.unary.prop/
H A Dis_final.pass.cpp20 union U2 final { };
48 test_is_final <U2>();
49 test_is_not_final<U2*>();
/external/valgrind/main/auxprogs/
H A Dposixtestsuite-1.5.1-diff-results20 diff -U2 tmptmp_1 tmptmp_2;
/external/clang/test/CodeGen/
H A Dxcore-stringtype.c134 // CHECK: !"f{0}(u(U1){m(pu2){p(u(U2){m(pu3){p(u(U3){m(u1){u(U1){}}})}})}})"}
135 // CHECK: !29 = metadata !{void (%union.U2*)* @unionType2, metadata
136 // CHECK: !"f{0}(u(U2){m(pu3){p(u(U3){m(u1){u(U1){m(pu2){p(u(U2){})}}}})}})"}
138 // CHECK: !"f{0}(u(U3){m(u1){u(U1){m(pu2){p(u(U2){m(pu3){p(u(U3){})}})}}}})"}
140 // CHECK: !"f{0}(u(U4){m(u1){u(U1){m(pu2){p(u(U2){m(pu3){p(u(U3){m(u1){u(U1){}}})}})}}}})"}
146 union U2;
147 union U1{union U2 *pu2;};
149 union U2{union U3 *pu3;}; union
153 void unionType2(union U2 u
[all...]
/external/compiler-rt/lib/asan/tests/
H A Dasan_asm_test.cc98 DECLARE_ASM_WRITE(U2, "2", "movw", "r");
103 DECLARE_ASM_READ(U2, "2", "movw", "=r");
171 TestAsmWrite<U2>("WRITE of size 2");
179 TestAsmRead<U2>("READ of size 2");
H A Dasan_test_utils.h59 typedef uint16_t U2; typedef
/external/valgrind/main/memcheck/tests/
H A Dsh-mem.c13 typedef unsigned short U2; typedef
107 assert(2 == sizeof(U2));
211 DO(2, U2, U2, /*isF4*/0);
H A Dsh-mem-random.c14 typedef unsigned short U2; typedef
139 case 1: { // U2
142 *(U2*)(arr+dst) = *(U2*)(arr+src);
H A Dsh-mem.stderr.exp3 -- NNN: 2 U2 U2 ------------------------
/external/chromium_org/third_party/libsrtp/srtp/tables/
H A Daes_tables.c135 * the tables U0, U1, U2, U3 implement the aes operations invSubBytes,
139 uint32_t U0[256], U1[256], U2[256], U3[256], U4[256]; variable
174 U2[i] = tmp.value;
225 printf("uint32_t U2 = {");
229 printf("0x%x, ", U2[i]);
267 printf("uint32_t U2 = {");
271 printf("0x%lx, ", U2[i]);
/external/srtp/tables/
H A Daes_tables.c135 * the tables U0, U1, U2, U3 implement the aes operations invSubBytes,
139 uint32_t U0[256], U1[256], U2[256], U3[256], U4[256]; variable
174 U2[i] = tmp.value;
227 printf("uint32_t U2 = {");
231 printf("0x%x, ", U2[i]);
269 printf("uint32_t U2 = {");
273 printf("0x%lx, ", U2[i]);
/external/openfst/src/test/
H A Dalgo_test.h92 UnionFst<Arc> U2(T1, T2);
93 CHECK(Equiv(U1, U2));
141 UnionFst<Arc> U2(U1, T3);
146 CHECK(Equiv(U2, U4));
210 VectorFst<Arc> U2(C2);
211 Union(&U2, C3);
213 CHECK(Equiv(C1, U2));
228 VectorFst<Arc> U2(C2);
229 Union(&U2, C3);
231 CHECK(Equiv(C1, U2));
[all...]
/external/clang/test/SemaTemplate/
H A Dfriend-template.cpp125 template<class U1, class U2, class U3, class T>
126 friend A<U1, U2, U3>& inner::f0(A<U1, U2, U3>&, T);
/external/clang/test/Sema/
H A Dwarn-type-safety-mpi-hdf5.c257 union U2 { int a; long b; double c; struct S1 s1; }; union
259 __attribute__(( type_tag_for_datatype(mpi, union U2, layout_compatible) ));
263 union U1 *u1_buf, union U2 *u2_buf)
271 MPI_Send(u2_buf, 1, my_u1_compat_datatype); // expected-warning {{argument type 'union U2 *' doesn't match specified 'mpi' type tag}}
/external/checkpolicy/
H A Dpolicy_scan.l207 U2 { return(U2); }
/external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp44 union U2 {} constexpr; // expected-error {{union cannot be marked constexpr}} union
/external/clang/test/Analysis/Inputs/
H A Dsystem-header-simulator-cxx.h19 template<class U1, class U2>
20 pair(const pair<U1, U2> &other) : first(other.first), second(other.second) {}
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-alg-fst.c111 ^ *((const word32*)U2[w[1]])
118 ^ *((const word32*)U2[w[1]])
125 ^ *((const word32*)U2[w[1]])
132 ^ *((const word32*)U2[w[1]])
448 ^ *((const word32*)U2[a[0][1]])
454 ^ *((const word32*)U2[a[1][1]])
460 ^ *((const word32*)U2[a[2][1]])
466 ^ *((const word32*)U2[a[3][1]])
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/math/ec/
H A DECPoint.java652 ECFieldElement Z1Squared, U2, S2;
655 Z1Squared = Z1; U2 = X2; S2 = Y2;
660 U2 = Z1Squared.multiply(X2);
679 ECFieldElement H = U1.subtract(U2);
1318 ECFieldElement U2 = Z2IsOne ? Y1 : Y1.multiply(Z2);
1319 ECFieldElement U = U1.subtract(U2);
1326 if (U1.equals(U2))
1356 ECFieldElement U2 = X2, S2 = L2;
1359 U2 = U2
[all...]

Completed in 485 milliseconds

12