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

  /libcore/luni/src/test/java/libcore/java/util/zip/
OldZipExceptionTest.java 26 ZipException zz = new ZipException(); local
27 assertEquals(zz.getMessage(), null);
31 ZipException zz = new ZipException("Test"); local
32 assertEquals(zz.getMessage(), "Test");
  /external/clang/test/Sema/
cast-to-union.c 16 union u zz = (union u)i; // expected-error{{initializer element is not a compile-time constant}} expected-warning {{C99 forbids casts to union type}} variable in typeref:union:u
anonymous-struct-union.c 46 double zz; // expected-note{{previous declaration is here}} member in union:Redecl::__anon5054
50 void zz(); // expected-error{{duplicate member 'zz'}}
designated-initializers.c 98 struct outer { struct inner { int x, *y; } in, *inp; } zz[] = { variable in typeref:struct:outer
99 [0].in.x = 2, &zz[0].in.x, &zz[0].in,
100 0, &anint, &zz[1].in,
102 [7].in.y = &anint, &zz[0].in,
106 int zz_sizecheck[sizeof(zz) / sizeof(struct outer) == 8? 1 : -1 ];
array-init.c 145 static char const zz[3] = "test"; // expected-warning{{initializer-string for char array is too long}} variable
  /external/valgrind/main/none/tests/amd64/
bug127521-64.c 52 ULong dd, aa, mmHi, mmLo, zz; local
53 do_cmpxchg8b( &dd, &aa, &mmHi, &mmLo, &zz,
57 d,a, mHi,mLo, c,b, zz, dd,aa, mmHi,mmLo );
105 ULong dd, aa, mmHi, mmLo, zz; local
106 do_cmpxchg16b( &dd, &aa, &mmHi, &mmLo, &zz,
110 d,a, mHi,mLo, c,b, zz, dd,aa, mmHi,mmLo );
  /external/dropbear/libtomcrypt/src/encauth/gcm/
gcm_gf_mult.c 120 LTC_FAST_TYPE B[16][WPV], tmp[32 / sizeof(LTC_FAST_TYPE)], pB[16 / sizeof(LTC_FAST_TYPE)], zz, z; local
184 zz = tmp[j] << (BPD-4);
186 z = zz;
  /external/openssl/crypto/asn1/
n_pkey.c 129 unsigned char buf[256],*zz; local
171 if ((zz=(unsigned char *)OPENSSL_malloc(rsalen)) == NULL)
177 pkey->private_key->data = zz;
179 i2d_RSAPrivateKey(a,&zz);
181 if ((zz=OPENSSL_malloc(pkeylen)) == NULL)
192 enckey->enckey->digest->data = zz;
193 i2d_NETSCAPE_PKEY(pkey,&zz);
218 zz = enckey->enckey->digest->data;
221 EVP_EncryptUpdate(&ctx,zz,&i,zz,pkeylen)
288 const unsigned char *zz; local
    [all...]
  /frameworks/base/media/libstagefright/codecs/m4v_h263/enc/src/
fastquant.cpp 153 Int i, zz; local
222 zz = ZZTab[i]; /* zigzag order */
233 qcoeff[zz>>1] = q_value;
242 if ((zz >> 1) > 31) bitmapzz[1] |= (1 << (63 - (zz >> 1)));
243 else bitmapzz[0] |= (1 << (31 - (zz >> 1)));
548 Int i, zz; local
613 zz = ZZTab[i]; /* zigzag order */
619 qcoeff[zz>>1] = q_value;
629 if ((zz >> 1) > 31) bitmapzz[1] |= (1 << (63 - (zz >> 1)))
    [all...]
vlc_encode.cpp 1795 Int *zz, nc, zzorder; local
    [all...]
  /external/clang/test/CodeGenCXX/
x86_64-arguments.cpp 133 A zz(A, A, A, A, StringDouble) { return A(); } function in namespace:test7
  /external/clang/test/SemaCXX/
anonymous-union.cpp 70 double zz; // expected-note{{previous definition is here}} member in union:Redecl::__anon5161
74 void zz(); // expected-error{{redefinition of 'zz' as different kind of symbol}}
  /external/clang/test/SemaTemplate/
instantiate-expr-2.cpp 49 typedef N4::BinOpOverload<N3::Z, N3::Z>::type ZZ;
50 ZZ *zz = a8; local
  /external/dropbear/libtomcrypt/testprof/
der_tests.c 513 unsigned long x, y, z, zz, oid[2][32]; local
544 for (zz = 0; zz < 16; zz++) {
571 for (zz = 0; zz < 256; zz++) {
608 for (zz = 1; zz < 1536; zz++)
    [all...]
x86_prof.c 815 int err, zz, stat; local
868 &zz, &key)) != CRYPT_OK) {
939 int err, zz; local
983 &zz, &key)) != CRYPT_OK) {
    [all...]
  /external/openssl/crypto/bn/
bn_gf2m.c 266 BN_ULONG zz, *z; local
295 zz = z[j];
305 z[j-n] ^= (zz>>d0);
306 if (d0) z[j-n-1] ^= (zz<<d1);
313 z[j-n] ^= (zz >> d0);
314 if (d0) z[j-n-1] ^= (zz << d1);
322 zz = z[dN] >> d0;
323 if (zz == 0) break;
331 z[0] ^= zz; /* reduction t^0 component */
341 z[n] ^= (zz << d0)
389 BN_ULONG x1, x0, y1, y0, zz[4]; local
    [all...]
  /external/libvpx/vp8/common/
postproc.c 774 char zz[4]; local
776 sprintf(zz, "%c", mi[mb_index].mbmi.mode + 'a');
778 vp8_blit_text(zz, y_ptr, post->y_stride);
806 char zz[4]; local
809 sprintf(zz, "a");
811 sprintf(zz, "%c", mi[mb_index].mbmi.dc_diff + '0');
813 vp8_blit_text(zz, y_ptr, post->y_stride);
    [all...]
  /external/mesa3d/test/
m_matrix.c 806 GLfloat xx, yy, zz, xy, yz, zx, xs, ys, zs, one_c, s, c; local
935 zz = z * z;
957 M(2,2) = (one_c * zz) + c;
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/transforms/
TransformationMatrix.cpp 1095 double zz = decomp.quaternionZ * decomp.quaternionZ; local
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThreadTest.java 75 zz(); method
100 public void zz() throws BogusException { method in class:ThreadTest.ResSupThread
  /system/core/libpixelflinger/
scanline.cpp 839 uint16_t zz = uint32_t(z)>>(16); local
843 case GGL_LESS: if (zz<depth) break; goto discard;
844 case GGL_EQUAL: if (zz==depth) break; goto discard
    [all...]
  /external/valgrind/main/perf/
test_input_for_tinycc.c 2775 { Int32 zz, tmp; zz = nHeap; tmp = heap[zz]; while (weight[tmp] < weight[heap[zz >> 1]]) { heap[zz] = heap[zz >> 1]; zz >>= 1; } heap[zz] = tmp; }; local
2781 n1 = heap[1]; heap[1] = heap[nHeap]; nHeap--; { Int32 zz, yy, tmp; zz = 1; tmp = heap[zz]; while (((Bool)1)) { yy = zz << 1; if (yy > nHeap) break; if (yy < nHeap && weight[heap[yy+1]] < weight[heap[yy]]) yy++; if (weight[tmp] < weight[heap[yy]]) break; heap[zz] = heap[yy]; zz = yy; } heap[zz] = tmp; }; local
2782 n2 = heap[1]; heap[1] = heap[nHeap]; nHeap--; { Int32 zz, yy, tmp; zz = 1; tmp = heap[zz]; while (((Bool)1)) { yy = zz << 1; if (yy > nHeap) break; if (yy < nHeap && weight[heap[yy+1]] < weight[heap[yy]]) yy++; if (weight[tmp] < weight[heap[yy]]) break; heap[zz] = heap[yy]; zz = yy; } heap[zz] = tmp; }; local
2789 { Int32 zz, tmp; zz = nHeap; tmp = heap[zz]; while (weight[tmp] < weight[heap[zz >> 1]]) { heap[zz] = heap[zz >> 1]; zz >>= 1; } heap[zz] = tmp; }; local
    [all...]
  /prebuilt/common/commons-compress/
commons-compress-1.0.jar 
  /prebuilt/common/ant/
ant.jar 
  /prebuilt/common/jfreechart/
jfreechart-1.0.9.jar 

Completed in 1298 milliseconds