Searched refs:U1 (Results 1 - 25 of 38) sorted by relevance

12

/external/clang/test/CXX/class/class.union/
H A Dp2-0x.cpp5 union U1 { union
14 constexpr int U1::k1;
15 constexpr int U1::k2;
16 int U1::k3;
18 const double U1::k4;
19 const double U1::k5;
H A Dp1.cpp38 union U1 { union
/external/valgrind/main/memcheck/tests/
H A Dsh-mem-random.c13 typedef unsigned char U1; typedef
37 U8 build(int size, U1 byte)
63 U1 make_defined ( U1 x )
65 volatile U1 xx = x;
70 void check(U1* arr, int n, char* who)
73 U1* shadow = malloc(n);
74 U1 arr_i;
100 static inline U1 randomU1 ( void )
109 void do_test_at ( U1* ar
[all...]
H A Dsh-mem.c12 typedef unsigned char U1; typedef
38 U8 build(int size, U1 byte)
68 void check_all(U4 x, U4 y, U1 expected_byte, U1 expected_byte_alt,
71 U1 sh[SZB_OF_a]; // Used for getting a[]'s V bits
89 U1 *undefA, expected_byte, expected_byte_alt;
101 assert( ((U1*)(&a[0])) < ((U1*)(32ULL * 1024*1024*1024)/*32G*/) );
105 assert(1 == sizeof(U1));
143 Ty* aNb = (Ty*)(((U1*)a
[all...]
H A Dsh-mem.stderr.exp1 -- NNN: 1 U1 U1 ------------------------
/external/mesa3d/src/glsl/glcpp/tests/
H A D067-nested-ifdef-ifndef.c6 #ifdef U1
34 #ifndef U1
/external/clang/test/SemaCXX/
H A Dinherit.cpp21 union U1 : public A { }; // expected-error{{unions cannot have base classes}}
H A Dclass.cpp138 template <typename U1, typename U2> struct bar {
/external/clang/test/Analysis/
H A Dsystem-header-simulator-cxx.h12 template<class U1, class U2>
13 pair(const pair<U1, U2> &other) : first(other.first), second(other.second) {}
/external/dropbear/libtommath/
H A Dbn_mp_exteuclid.c21 int mp_exteuclid(mp_int *a, mp_int *b, mp_int *U1, mp_int *U2, mp_int *U3) argument
70 if (U1 != NULL) { mp_exch(U1, &u1); }
/external/openfst/src/test/
H A Dalgo_test.h90 VectorFst<Arc> U1(T1);
91 Union(&U1, T2);
93 CHECK(Equiv(U1, U2));
126 VectorFst<Arc> U1(T1);
127 Union(&U1, T2);
128 Union(&U1, T3);
135 CHECK(Equiv(U1, U4));
140 UnionFst<Arc> U1(T1, T2);
141 UnionFst<Arc> U2(U1, T3);
152 UnionFst<Arc> U1(T
[all...]
/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
168 U1[i] = tmp.value;
219 printf("uint32_t U1 = {");
223 printf("0x%x, ", U1[i]);
261 printf("uint32_t U1 = {");
265 printf("0x%lx, ", U1[i]);
/external/checkpolicy/
H A Dpolicy_scan.l205 U1 { return(U1); }
H A Dpolicy_parse.y133 %token U1 U2 U3 R1 R2 R3 T1 T2 T3 L1 L2 H1 H2
491 cexpr_prim : U1 op U2
500 | U1 op { if (insert_separator(1)) return -1; } names_push
/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/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
H A Dp1.cpp36 constexpr union U1 {}; // expected-error {{union cannot be marked constexpr}} union
/external/ipsec-tools/src/racoon/missing/crypto/rijndael/
H A Drijndael-alg-fst.c110 *((const word32*)U1[w[0]])
117 *((const word32*)U1[w[0]])
124 *((const word32*)U1[w[0]])
131 *((const word32*)U1[w[0]])
447 *((const word32*)U1[a[0][0]])
453 *((const word32*)U1[a[1][0]])
459 *((const word32*)U1[a[2][0]])
465 *((const word32*)U1[a[3][0]])
/external/srtp/crypto/cipher/
H A Daes.c52 * the tables U0, U1, U2, and U4 to compute its inverse
399 static uint32_t U1[256] = { variable
937 static uint32_t U1[256] = { variable
1433 * mixColumn is implemented by using the tables U0, U1, U2, U3,
1444 U1[T4[(tmp >> 16) & 0xff] & 0xff] ^
1451 U1[T4[(tmp >> 16) & 0xff] & 0xff] ^
1458 U1[T4[(tmp >> 16) & 0xff] & 0xff] ^
1465 U1[T4[(tmp >> 16) & 0xff] & 0xff] ^
1473 ^ U1[aes_sbox[expanded_key[i].v8[1]]]
1478 ^ U1[aes_sbo
[all...]
/external/clang/test/Sema/
H A Dwarn-type-safety-mpi-hdf5.c240 union U1 { int a; long b; double c; double d; struct S1 s1; }; union
251 union U1 *u1_buf, union U2 *u2_buf)
258 MPI_Send(u1_buf, 1, my_u2_datatype); // expected-warning {{argument type 'union U1 *' doesn't match specified 'mpi' type tag}}
/external/compiler-rt/lib/asan/tests/
H A Dasan_test.cc45 typedef uint8_t U1; typedef
275 OOBTest<U1>();
309 EXPECT_DEATH(uaf_test<U1>(1, 0), uaf_string);
310 EXPECT_DEATH(uaf_test<U1>(10, 0), uaf_string);
311 EXPECT_DEATH(uaf_test<U1>(10, 10), uaf_string);
312 EXPECT_DEATH(uaf_test<U1>(kLargeMalloc, 0), uaf_string);
313 EXPECT_DEATH(uaf_test<U1>(kLargeMalloc, kLargeMalloc / 2), uaf_string);
1820 uaf_test<U1>(10, 0);
1823 uaf_test<U1>(10, -2);
1826 uaf_test<U1>(1
[all...]
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-tuple.h227 template <typename U0, typename U1>
228 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}
236 template <typename U0, typename U1>
237 tuple& operator=(const ::std::pair<U0, U1>& p) {
/external/valgrind/main/VEX/priv/
H A Dir_opt.c1012 e->Iex.Unop.arg->Iex.Const.con->Ico.U1
1017 e->Iex.Unop.arg->Iex.Const.con->Ico.U1
1022 e->Iex.Unop.arg->Iex.Const.con->Ico.U1
1028 e->Iex.Unop.arg->Iex.Const.con->Ico.U1
1033 e->Iex.Unop.arg->Iex.Const.con->Ico.U1
1038 e->Iex.Unop.arg->Iex.Const.con->Ico.U1
1043 e->Iex.Unop.arg->Iex.Const.con->Ico.U1
1126 notBool(e->Iex.Unop.arg->Iex.Const.con->Ico.U1)));
2029 vassert(fcond->Iex.Const.con->Ico.U1 == False
2030 || fcond->Iex.Const.con->Ico.U1
[all...]
H A Dhost_s390_isel.c332 case Ico_U1: value = expr->Iex.Const.con->Ico.U1; break;
393 && guard->Iex.Const.con->Ico.U1 == True) {
1351 case Ico_U1: value = expr->Iex.Const.con->Ico.U1; break;
1892 vassert(cond->Iex.Const.con->Ico.U1 == True
1893 || cond->Iex.Const.con->Ico.U1 == False);
1895 return cond->Iex.Const.con->Ico.U1 == True ? S390_CC_ALWAYS : S390_CC_NEVER;
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-tuple.h228 template <typename U0, typename U1>
229 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}
237 template <typename U0, typename U1>
238 tuple& operator=(const ::std::pair<U0, U1>& p) {
/external/gtest/include/gtest/internal/
H A Dgtest-tuple.h228 template <typename U0, typename U1>
229 tuple(const ::std::pair<U0, U1>& p) : f0_(p.first), f1_(p.second) {}
237 template <typename U0, typename U1>
238 tuple& operator=(const ::std::pair<U0, U1>& p) {

Completed in 2010 milliseconds

12