Searched defs:extra (Results 1 - 25 of 36) sorted by relevance

12

/openjdk7/jdk/src/share/native/sun/font/layout/
H A DCoverageTables.cpp72 le_uint16 extra = count - power; local
80 if (SWAPW(glyphArray[extra]) <= ttGlyphID) {
81 index = extra;
H A DLookupTables.cpp57 le_int16 extra = SWAPW(rangeShift); local
60 LEReferenceTo<LookupSegment> trial(entry, success, extra);
89 le_int16 extra = SWAPW(rangeShift); local
92 LEReferenceTo<LookupSingle> trial(entry, success, extra);
H A DOpenTypeUtilities.cpp87 le_int32 extra = recordCount - power; local
92 const ATag &aTag = records.getAlias(extra,success)->tag;
94 index = extra;
126 le_int32 extra = recordCount - power; local
134 if (SWAPW(records(extra,success).firstGlyph) <= glyphID) {
135 range = extra;
156 le_int32 extra = count - power; local
160 if (value >= array[extra]) {
161 index = extra;
178 le_int32 extra local
[all...]
/openjdk7/jdk/test/sun/rmi/log/ReliableLog/
H A DRecovery.java211 public void basicUpdate (String extra) argument
213 this.contents = this.contents + extra;
H A DLogAlignmentTest.java162 public void basicUpdate (String extra) argument
164 this.contents = this.contents + extra;
/openjdk7/jdk/test/java/io/Serializable/GetField/
H A DRead2.java44 Object extra; field in class:Foo
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipInfo.java76 // use size CENHDR as the extra bytes to read, just in case the
77 // loc.extra is bigger than the cen.extra, try to avoid to read
180 static void printExtra(byte[] extra, int off, int len) { argument
183 int tag = SH(extra, off);
184 int sz = SH(extra, off + 2);
187 print(" Error: Invalid extra data, beyond extra length");
192 print("%02x ", extra[off + i]);
199 print(" *0x%x ", LL(extra, po
[all...]
H A DZipFileAttributes.java127 public byte[] extra() { method in class:ZipFileAttributes
128 if (e.extra != null)
129 return Arrays.copyOf(e.extra, e.extra.length);
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dinftrees.c80 const unsigned short FAR *extra; /* extra bits table to use */ local
81 int end; /* use base and extra for symbol > end */
87 static const unsigned short lext[31] = { /* Length codes 257..285 extra */
94 static const unsigned short dext[32] = { /* Distance codes 0..29 extra */
208 base = extra = work; /* dummy value--not used */
214 extra = lext;
215 extra -= 257;
220 extra = dext;
248 this.op = (unsigned char)(extra[wor
[all...]
H A Dinflate.h48 OS, /* i: waiting for extra flags and operating system (gzip) */
49 EXLEN, /* i: waiting for extra length (gzip) */
50 EXTRA, /* i: waiting for extra bytes (gzip) */
64 LENEXT, /* i: waiting for length extra bits */
66 DISTEXT, /* i: waiting for distance extra bits */
124 unsigned extra; /* extra bits needed */ member in struct:inflate_state
H A Dzlib.h136 int xflags; /* extra flags (not used when writing a gzip file) */
138 Bytef *extra; /* pointer to extra field or Z_NULL if none */ member in struct:gz_header_s
139 uInt extra_len; /* extra field length (valid if extra != Z_NULL) */
140 uInt extra_max; /* space at extra (only when reading header) */
531 file name, no extra data, no comment, no modification time (set to zero),
699 deflate(). The text, time, os, extra field, name, and comment information
701 ignored -- the extra flags are set according to the compression level). The
703 a zero byte, and that if extra i
[all...]
H A Dtrees.c85 local const int extra_lbits[LENGTH_CODES] /* extra bits for each length code */
88 local const int extra_dbits[D_CODES] /* extra bits for each distance code */
91 local const int extra_blbits[BL_CODES]/* extra bits for each bit length code */
116 * need for the L_CODES extra codes used during heap construction. However
147 const intf *extra_bits; /* extra bits for each code or NULL */
521 const intf *extra = desc->stat_desc->extra_bits; local
527 int xbits; /* extra bits */
549 if (n >= base) xbits = extra[n-base];
679 /* node is 0 or 1 so it does not have extra bits */
1105 int extra; /* numbe local
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/util/
H A DInstructionFinder.java406 private static String precompile(short from, short to, short extra) { argument
414 buf.append(makeChar(extra));
/openjdk7/jdk/src/share/classes/java/util/zip/
H A DZipEntry.java44 byte[] extra; // optional extra field data for entry field in class:ZipEntry
88 extra = e.extra;
218 * Sets the optional extra field data for the entry.
219 * @param extra the extra field data bytes
221 * extra field data is greater than 0xFFFF bytes
224 public void setExtra(byte[] extra) { argument
225 if (extra !
[all...]
/openjdk7/jdk/test/java/util/zip/ZipFile/
H A DAssortment.java61 private byte[] extra; field in class:Assortment.Entry
67 byte[] extra,
72 this.extra = extra;
90 if (extra != null) e.setExtra(extra);
105 byte[] extra = (this.extra != null && this.extra.length == 0) ?
106 null : this.extra;
64 Entry(String name, int method, byte[] data, byte[] extra, String comment) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/font/
H A DCMap.java948 int extra; field in class:CMap.CMapFormat12
1000 extra = numGroups - power;
1011 if (startCharCode[extra] <= charCode) {
1012 range = extra;
/openjdk7/hotspot/src/share/vm/oops/
H A DconstantPoolKlass.cpp320 bool extra = (instanceKlass::cast(cp->pool_holder())->constants() != cp); local
321 st->print_cr(" - holder: " INTPTR_FORMAT "%s", cp->pool_holder(), (extra? " (extra)" : ""));
430 bool extra = (instanceKlass::cast(cp->pool_holder())->constants() != cp); local
431 if (extra) st->print(" (extra)");
/openjdk7/jdk/test/java/util/jar/
H A DTestExtra.java27 * @summary Test that client-provided data in the extra field is written and
28 * read correctly, taking into account the JAR_MAGIC written into the extra
40 * Tests that the get/set operations on extra data in zip and jar files work
50 // ZipEntry extra data
51 final static byte[][] extra = new byte[][] { field in class:TestExtra
84 for (byte[] b : extra) {
100 checkEntry(ze, 0, extra[0].length);
103 checkEntry(ze, 1, extra[1].length);
106 /** Test that a header only (i.e., no extra "data") set by client works. */
121 check(e.length == 8, "expected extra lengt
[all...]
/openjdk7/hotspot/src/share/vm/runtime/
H A DjniHandles.cpp525 int extra = total - 2*free; local
526 if (extra > 0) {
528 _allocate_before_rebuild = (extra + block_size_in_oops - 1) / block_size_in_oops;
H A Dvirtualspace.cpp256 // in size. Exploit that to minimize the amount of extra space requested.
259 const size_t extra = MAX2(ofs, suffix_align - ofs); local
260 addr = reserve_and_align(size + extra, adjusted_prefix_size, prefix_align,
/openjdk7/jdk/src/windows/native/sun/font/
H A Dlcdglyph.c179 int bytesWidth, dibBytesWidth, extra, imageSize, dibImageSize; local
286 * The extra pixels of width are used as follows :
287 * One extra pixel at the left and the right will be needed to absorb
290 * However there seem to be some cases where GDI renders two extra
296 * One extra pixel at each end to account for sub-pixel positioning used
320 extra = dibBytesWidth % 4;
321 if (extra != 0) {
322 dibBytesWidth += (4-extra);
325 extra = bytesWidth % 3;
326 if (extra !
[all...]
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dzip.cpp137 // So called "extra field" length.
199 // So called "extra field" length.
468 int extra = (int) read_gzin_fn(u, inbuf, 1, inbuflen); local
469 zs.avail_in += extra - TRAILER_LEN;
511 // do not save extra, name, comment
/openjdk7/jdk/src/share/classes/sun/net/httpserver/
H A DExchangeImpl.java299 * Make sure that at least "extra" bytes are free at end
303 private byte[] bytes (String s, int extra) { argument
305 if (slen+extra > rspbuf.length) {
306 int diff = slen + extra - rspbuf.length;
/openjdk7/jdk/src/share/native/java/util/zip/
H A Dzip_util.h82 #define LOCEXT(b) SH(b, 28) /* extra field length */
85 * Macros for getting extra local (EXT) header fields
103 #define CENEXT(b) SH(b, 30) /* length of extra field */
152 * - If extra != 0 then the first two bytes are the length of the extra
166 jbyte *extra; /* optional extra data */ member in struct:jzentry
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DLambdaForm.java406 * (a) redundant compilation work and (b) extra I$ pressure.
1489 static Name[] arguments(int extra, String types) { argument
1491 Name[] names = new Name[length + extra];
1496 static Name[] arguments(int extra, char... types) { argument
1498 Name[] names = new Name[length + extra];
1503 static Name[] arguments(int extra, List<Class<?>> types) { argument
1505 Name[] names = new Name[length + extra];
1510 static Name[] arguments(int extra, Class<?>... types) { argument
1512 Name[] names = new Name[length + extra];
1517 static Name[] arguments(int extra, MethodTyp argument
[all...]

Completed in 2912 milliseconds

12