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

1 2

  /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), "");
p1.cpp 51 union U2 {
53 Virtual v; // expected-note {{because type 'U2::<anonymous struct}}
56 VirtualBase vbase; // expected-note {{because type 'U2::<anonymous struct}}
59 Ctor ctor; // expected-note {{because type 'U2::<anonymous struct}}
62 Ctor2 ctor2; // expected-note {{because type 'U2::<anonymous struct}}
65 CopyCtor copyctor; // expected-note {{because type 'U2::<anonymous struct}}
68 CopyAssign copyassign; // expected-note {{because type 'U2::<anonymous struct}}
71 Dtor dtor; // expected-note {{because type 'U2::<anonymous struct}}
  /external/clang/test/SemaCXX/
inherit.cpp 23 union U2 {};
25 class G : public U2 { }; // expected-error{{unions cannot be base classes}}
class.cpp 138 template <typename U1, typename U2> struct bar {
constant-expression-cxx11.cpp 552 constexpr T(T *p) : u1(), u2(p) {}
557 union U2 {
558 constexpr U2(T *p) : c(p->u1.b) {}
560 } u2; member in struct:G::T
567 static_assert(g.t.u2.c == 42, "");
568 static_assert(g.t.u2.d == 42, ""); // expected-error {{constant expression}} expected-note {{read of member 'd' of union with active member 'c'}}
    [all...]
  /external/mesa3d/src/glsl/glcpp/tests/
067-nested-ifdef-ifndef.c 7 #ifdef U2
35 #ifndef U2
  /external/valgrind/main/auxprogs/
posixtestsuite-1.5.1-diff-results 20 diff -U2 tmptmp_1 tmptmp_2;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/reference/vc/m4p10/src/
omxVCM4P10_PredictIntra_4x4.c 139 * UL U0 U1 U2 U3 U4 U5 U6 U7
149 #define U2 pSrcAbove[2]
167 pDst[y*dstStep+2] = U2;
188 pTmp[0] = (OMX_U8)((U0 + 2*U1 + U2 + 2)>>2);
189 pTmp[1] = (OMX_U8)((U1 + 2*U2 + U3 + 2)>>2);
192 pTmp[2] = (OMX_U8)((U2 + 2*U3 + U4 + 2)>>2);
200 pTmp[2] = (OMX_U8)((U2 + 3*U3 + 2)>>2);
222 pTmp[5] = (OMX_U8)((U2 + 2*U1 + U0 + 2)>>2);
223 pTmp[6] = (OMX_U8)((U3 + 2*U2 + U1 + 2)>>2);
244 pTmp[6] = (OMX_U8)((U0 + 2*U1 + U2 + 2)>>2)
    [all...]
  /external/dropbear/libtommath/
bn_mp_exteuclid.c 19 a*u1 + b*u2 = u3
21 int mp_exteuclid(mp_int *a, mp_int *b, mp_int *U1, mp_int *U2, mp_int *U3)
23 mp_int u1,u2,u3,v1,v2,v3,t1,t2,t3,q,tmp; local
26 if ((err = mp_init_multi(&u1, &u2, &u3, &v1, &v2, &v3, &t1, &t2, &t3, &q, &tmp, NULL)) != MP_OKAY) {
30 /* initialize, (u1,u2,u3) = (1,0,a) */
43 /* (t1,t2,t3) = (u1,u2,u3) - (v1,v2,v3)q */
47 if ((err = mp_sub(&u2, &tmp, &t2)) != MP_OKAY) { goto _ERR; }
51 /* (u1,u2,u3) = (v1,v2,v3) */
53 if ((err = mp_copy(&v2, &u2)) != MP_OKAY) { goto _ERR; }
65 mp_neg(&u2, &u2)
    [all...]
tommath.h 374 /* produces value such that U1*a + U2*b = U3 */
375 int mp_exteuclid(mp_int *a, mp_int *b, mp_int *U1, mp_int *U2, mp_int *U3);
  /external/valgrind/main/memcheck/tests/
sh-mem.c 13 typedef unsigned short U2;
106 assert(2 == sizeof(U2));
209 DO(2, U2, U2, /*isF4*/0);
sh-mem-random.c 14 typedef unsigned short U2;
139 case 1: { // U2
142 *(U2*)(arr+dst) = *(U2*)(arr+src);
sh-mem.stderr.exp 3 -- NNN: 2 U2 U2 ------------------------
  /external/srtp/tables/
aes_tables.c 135 * the tables U0, U1, U2, U3 implement the aes operations invSubBytes,
139 uint32_t U0[256], U1[256], U2[256], U3[256], U4[256];
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/
algo_test.h 92 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/checkpolicy/
policy_scan.l 206 u2 |
207 U2 { return(U2); }
policy_parse.y 133 %token U1 U2 U3 R1 R2 R3 T1 T2 T3 L1 L2 H1 H2
491 cexpr_prim : U1 op U2
503 | U2 op { if (insert_separator(1)) return -1; } names_push
  /external/clang/test/SemaTemplate/
friend-template.cpp 125 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/
p1.cpp 43 union U2 {} constexpr; // expected-error {{union cannot be marked constexpr}}
  /external/ipsec-tools/src/racoon/missing/crypto/rijndael/
rijndael-alg-fst.c 111 ^ *((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]])
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 159 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
164 A2, B2, C2, D2, E2, F2, G2, H2, I2, J2, K2, L2, M2, N2, O2, P2, Q2, R2, S2, T2, U2, V2, W2, X2, Y2, Z2,
  /frameworks/base/location/java/android/location/
Location.java 292 double U2 = Math.atan((1.0 - f) * Math.tan(lat2));
295 double cosU2 = Math.cos(U2);
297 double sinU2 = Math.sin(U2);
  /external/srtp/crypto/cipher/
aes.c 52 * the tables U0, U1, U2, and U4 to compute its inverse
466 static uint32_t U2[256] = {
    [all...]
  /dalvik/vm/arch/x86-atom/
Call386ABI.S 155 U2:
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 272 Instruction *U2 = cast<Instruction>(*IncrUse++);
279 Compare = dyn_cast<FCmpInst>(U2);
    [all...]

Completed in 599 milliseconds

1 2