HomeSort by relevance Sort by last modified time
    Searched defs:U1 (Results 1 - 17 of 17) sorted by null

  /external/clang/test/CXX/class/class.union/
p2-0x.cpp 5 union U1 {
14 constexpr int U1::k1;
15 constexpr int U1::k2;
16 int U1::k3;
18 const double U1::k4;
19 const double U1::k5;
p1.cpp 38 union U1 {
  /external/compiler-rt/lib/asan/tests/
asan_test_utils.h 62 typedef uint8_t U1;
  /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
148 #define U1 pSrcAbove[1]
166 pDst[y*dstStep+1] = U1;
188 pTmp[0] = (OMX_U8)((U0 + 2*U1 + U2 + 2)>>2);
189 pTmp[1] = (OMX_U8)((U1 + 2*U2 + U3 + 2)>>2);
221 pTmp[4] = (OMX_U8)((U1 + 2*U0 + UL + 2)>>2);
222 pTmp[5] = (OMX_U8)((U2 + 2*U1 + U0 + 2)>>2);
223 pTmp[6] = (OMX_U8)((U3 + 2*U2 + U1 + 2)>>2);
242 pTmp[4] = (OMX_U8)((UL + 2*U0 + U1 + 2)>>2);
243 pTmp[5] = (OMX_U8)((U0 + U1 + 1)>>1)
    [all...]
  /external/valgrind/main/memcheck/tests/
sh-mem.c 12 typedef unsigned char U1;
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*)aN) + h); /* set offset from a[] */
    [all...]
sh-mem-random.c 13 typedef unsigned char U1;
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* arr
    [all...]
  /external/srtp/crypto/cipher/
aes.c 52 * the tables U0, U1, U2, and U4 to compute its inverse
399 static uint32_t U1[256] = {
    [all...]
  /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];
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/clang/test/CXX/dcl.dcl/dcl.spec/dcl.constexpr/
p1.cpp 37 constexpr union U1 {}; // expected-error {{union cannot be marked constexpr}}
  /external/clang/test/Sema/
warn-documentation.cpp 934 @union U1
936 union U1 {int i; };
warn-type-safety-mpi-hdf5.c 252 union U1 { int a; long b; double c; double d; struct S1 s1; };
263 union U1 *u1_buf, union U2 *u2_buf)
270 MPI_Send(u1_buf, 1, my_u2_datatype); // expected-warning {{argument type 'union U1 *' doesn't match specified 'mpi' type tag}}
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowLocation.java 262 double U1 = Math.atan((1.0 - f) * Math.tan(lat1));
265 double cosU1 = Math.cos(U1);
267 double sinU1 = Math.sin(U1);
  /libcore/luni/src/test/java/libcore/java/lang/
ClassCastExceptionTest.java 158 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
163 A1, B1, C1, D1, E1, F1, G1, H1, I1, J1, K1, L1, M1, N1, O1, P1, Q1, R1, S1, T1, U1, V1, W1, X1, Y1, Z1,
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 270 Instruction *U1 = cast<Instruction>(*IncrUse++);
277 FCmpInst *Compare = dyn_cast<FCmpInst>(U1);
    [all...]
  /frameworks/base/location/java/android/location/
Location.java 306 double U1 = Math.atan((1.0 - f) * Math.tan(lat1));
309 double cosU1 = Math.cos(U1);
311 double sinU1 = Math.sin(U1);
  /external/compiler-rt/lib/msan/tests/
msan_test.cc 48 typedef unsigned char U1;
213 EXPECT_POISONED(*GetPoisoned<U1>());
214 EXPECT_POISONED(*GetPoisoned<U1>());
215 EXPECT_POISONED(*GetPoisoned<U1>());
318 ((U1*)p)[1] = 0;
319 ((U1*)p)[2] = 0xff;
357 EXPECT_NOT_POISONED(applyNot<U1>(0x0, 0x0));
358 EXPECT_NOT_POISONED(applyNot<U1>(0xFF, 0xFE));
359 EXPECT_NOT_POISONED(applyNot<U1>(0xFF, 0x0));
360 EXPECT_POISONED(applyNot<U1>(0xFF, 0xFF))
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_ir.h 290 Bool U1;
    [all...]

Completed in 1135 milliseconds