Searched refs:CENEXT (Results 1 - 9 of 9) sorted by relevance

/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipConstants.java83 static final int CENEXT = 30; // extra field length field in interface:ZipConstants
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipInfo.java79 long len = LOCHDR + CENNAM(cen, pos) + CENEXT(cen, pos) + CENHDR;
82 if (LOCEXT(buf) > CENEXT(cen, pos) + CENHDR) {
89 pos += CENHDR + CENNAM(cen, pos) + CENEXT(cen, pos) + CENCOM(cen, pos);
145 print(" ExtraLen : %#6x%n", CENEXT(cen, off));
146 if (CENEXT(cen, off) != 0)
147 printExtra(cen, off + CENHDR + CENNAM(cen, off), CENEXT(cen, off));
160 int end = off + CENEXT(cen, pos);
H A DZipConstants.java117 static final int CENEXT = 30; // extra field length field in class:ZipConstants
250 static final int CENEXT(byte[] b, int pos) { return SH(b, pos + 30);} method in class:ZipConstants
H A DZipFileSystem.java1061 int elen = CENEXT(cen, pos);
1889 int elen = CENEXT(cen, pos);
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DCorruptedZipFiles.java73 if (u16(good, locpos+LOCEXT) != u16(good,cenpos+CENEXT))
114 err.println("corrupted CENEXT 1");
116 bad[cenpos+CENEXT]++;
119 err.println("corrupted CENEXT 2");
121 bad[cenpos+CENEXT] = (byte)0xfd;
122 bad[cenpos+CENEXT+1] = (byte)0xfd;
224 static final int CENEXT = ZipFile.CENEXT; field in class:CorruptedZipFiles
/openjdk7/jdk/src/share/bin/
H A Dmanifest_info.h88 #define CENEXT(b) SH(b, 30) /* length of extra field */ macro
H A Dparse_manifest.c302 entry_size = CENHDR + CENNAM(p) + CENEXT(p) + CENCOM(p);
/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.h103 #define CENEXT(b) SH(b, 30) /* length of extra field */ macro
H A Dzip_util.c66 #define CENSIZE(cen) (CENHDR + CENNAM(cen) + CENEXT(cen) + CENCOM(cen))
1008 elen = CENEXT(cen);

Completed in 50 milliseconds