Searched defs:overlay (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Ddeflate.c255 ushf *overlay; local
256 /* We overlay pending_buf and d_buf+l_buf. This works since the average
317 overlay = (ushf *) ZALLOC(strm, s->lit_bufsize, sizeof(ush)+2);
318 s->pending_buf = (uchf *) overlay;
328 s->d_buf = overlay + s->lit_bufsize/sizeof(ush);
927 ushf *overlay;
947 overlay = (ushf *) ZALLOC(dest, ds->lit_bufsize, sizeof(ush)+2);
948 ds->pending_buf = (uchf *) overlay;
962 ds->d_buf = overlay + ds->lit_bufsize/sizeof(ush);

Completed in 293 milliseconds