/openjdk7/jdk/src/share/classes/java/util/zip/ |
H A D | Inflater.java | 57 * int resultLength = decompresser.inflate(result); 149 * called when inflate() returns 0 and needsDictionary() returns true 174 * called when inflate() returns 0 and needsDictionary() returns true 247 public int inflate(byte[] b, int off, int len) method in class:Inflater 279 public int inflate(byte[] b) throws DataFormatException { method in class:Inflater 280 return inflate(b, 0, b.length);
|
/openjdk7/jdk/test/java/util/zip/ |
H A D | InflaterBufferSize.java | 27 * @summary Inflater should not require a buffer to the inflate() methods 88 private static byte[] inflate(byte[] in) throws Throwable { method in class:InflaterBufferSize 97 while ((n = flater.inflate(smallBuffer)) > 0) { 131 inflated = inflate(deflated);
|
H A D | FlaterCriticalArray.java | 101 inflated = inflate(deflated); 115 abstract protected byte[] inflate(byte deflated[]) throws Throwable; method in class:FlaterCriticalArray.TestCase 155 protected byte[] inflate(byte in[]) throws Throwable { method in class:FlaterCriticalArray.StrideTest 167 while ((n = inflater.inflate(smallBuffer)) > 0) { 199 public byte[] inflate(byte in[]) throws Throwable { method in class:FlaterCriticalArray.NoStrideTest 206 while ((n = flater.inflate(smallBuffer)) > 0) { 231 public byte[] inflate(byte deflated[]) throws Throwable { method in class:FlaterCriticalArray.GZIPTest
|
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/ |
H A D | inflate.c | 25 /* inflate.c -- zlib decompression 34 * - First version -- complete rewrite of inflate to simplify code, avoid 37 * improve code readability and style over the previous zlib inflate code 48 * - Correct filename to inffixed.h for fixed tables in inflate.c 49 * - Make hbuf[] unsigned char to match parameter type in inflate.c 51 * to avoid negation problem on Alphas (64 bit) in inflate.c 61 * - Make MATCH copy in inflate() much faster for when inflate_fast() not used 63 * buffer and bit count in inflate()--for speed when inflate_fast() not used 67 * - Move a comment on output buffer sizes from inffast.c to inflate.c 77 * source file infback.c to provide a call-back interface to inflate fo 578 int ZEXPORT inflate(strm, flush) function [all...] |
H A D | zconf.h | 47 # define inflate z_inflate macro 186 The memory requirements for inflate are (in bytes) 1 << windowBits
|
/openjdk7/jdk/src/share/classes/java/math/ |
H A D | BigDecimal.java | 1140 this.inflate(); 1141 augend.inflate(); 1187 BigDecimal d = new BigDecimal(lhs.inflate().add(augend.inflate()), 1598 this.inflate(); 1599 divisor.inflate(); 1957 this.inflate(); 2019 this.inflate(); 2189 result = bigDigitLength(inflate()); 2205 return this.inflate(); 3517 private BigInteger inflate() { method in class:BigDecimal [all...] |
/openjdk7/jdk/src/share/classes/com/sun/imageio/plugins/png/ |
H A D | PNGImageReader.java | 470 text = new String(inflate(b), "UTF8"); 621 private static byte[] inflate(byte[] b) throws IOException { method in class:PNGImageReader 646 metadata.zTXt_text.add(new String(inflate(b), "ISO-8859-1"));
|
/openjdk7/hotspot/src/share/vm/runtime/ |
H A D | synchronizer.cpp | 219 ObjectSynchronizer::inflate(THREAD, object)->exit (true, THREAD) ; 239 // Fall through to inflate() ... 261 ObjectSynchronizer::inflate(THREAD, obj())->enter(THREAD); 291 ObjectMonitor* monitor = ObjectSynchronizer::inflate(THREAD, obj()); 304 ObjectMonitor* monitor = ObjectSynchronizer::inflate(THREAD, obj()); 319 ObjectSynchronizer::inflate(THREAD, obj())->enter(THREAD); 345 ObjectMonitor* monitor = ObjectSynchronizer::inflate(THREAD, obj); 388 ObjectMonitor* monitor = ObjectSynchronizer::inflate(THREAD, obj()); 407 ObjectSynchronizer::inflate(THREAD, obj()) -> wait(millis, false, THREAD) ; 420 ObjectSynchronizer::inflate(THREA 1195 ObjectMonitor * ATTR ObjectSynchronizer::inflate (Thread * Self, oop object) { function in class:ObjectSynchronizer [all...] |
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/file/ |
H A D | ZipFileIndex.java | 391 if (inflate(cbuf, buf) != size) 422 int count = inflate(cbuf, buffer); 448 private int inflate(byte[] src, byte[] dest) { method in class:ZipFileIndex 458 return inflater.inflate(dest);
|