• Home
  • Raw
  • Download

Lines Matching refs:zstrm

81     z_stream zstrm;             /* stream structure in-place (not a pointer) */  member
134 state->zstrm.avail_in = 0; /* no input data yet */ in xz_reset()
280 state->strm.avail_in = state->zstrm.avail_in; in xz_avail_zstrm()
281 state->strm.next_in = state->zstrm.next_in; in xz_avail_zstrm()
283 state->zstrm.avail_in = (uInt) state->strm.avail_in; in xz_avail_zstrm()
284 state->zstrm.next_in = (Bytef *) state->strm.next_in; in xz_avail_zstrm()
370 z_streamp strm = &(state->zstrm); in gz_next4()
420 state->zstrm.zalloc = Z_NULL; in xz_head()
421 state->zstrm.zfree = Z_NULL; in xz_head()
422 state->zstrm.opaque = Z_NULL; in xz_head()
423 state->zstrm.avail_in = 0; in xz_head()
424 state->zstrm.next_in = Z_NULL; in xz_head()
426 if (inflateInit2(&(state->zstrm), -15) != Z_OK) {/* raw inflate */ in xz_head()
501 inflateReset(&state->zstrm); in xz_head()
502 state->zstrm.adler = crc32(0L, Z_NULL, 0); in xz_head()
555 state->zstrm.avail_in = (uInt) state->strm.avail_in; in xz_decomp()
556 state->zstrm.next_in = (Bytef *) state->strm.next_in; in xz_decomp()
557 state->zstrm.avail_out = (uInt) state->strm.avail_out; in xz_decomp()
558 state->zstrm.next_out = (Bytef *) state->strm.next_out; in xz_decomp()
559 ret = inflate(&state->zstrm, Z_NO_FLUSH); in xz_decomp()
571 state->strm.avail_in = state->zstrm.avail_in; in xz_decomp()
572 state->strm.next_in = state->zstrm.next_in; in xz_decomp()
573 state->strm.avail_out = state->zstrm.avail_out; in xz_decomp()
574 state->strm.next_out = state->zstrm.next_out; in xz_decomp()
596 state->zstrm.adler = in xz_decomp()
597 crc32(state->zstrm.adler, state->next, state->have); in xz_decomp()
607 if (crc != state->zstrm.adler) { in xz_decomp()
611 if (len != (state->zstrm.total_out & 0xffffffffL)) { in xz_decomp()
793 inflateEnd(&(state->zstrm)); in __libxml2_xzclose()