Lines Matching refs:zctrl
1495 z_stream zctrl; member
1523 *buff->zctrl.next_out = ( data & 0xff ); in append_reverse_ulong()
1525 buff->zctrl.next_out++; in append_reverse_ulong()
1550 z_err = deflateEnd( &buff->zctrl ); in xmlFreeZMemBuff()
1556 deflateEnd( &buff->zctrl ); in xmlFreeZMemBuff()
1600 z_err = deflateInit2( &buff->zctrl, compression, Z_DEFLATED, in xmlCreateZMemBuff()
1620 buff->zctrl.next_out = buff->zbuff + hdr_lgth; in xmlCreateZMemBuff()
1621 buff->zctrl.avail_out = buff->size - hdr_lgth; in xmlCreateZMemBuff()
1652 cur_used = buff->zctrl.next_out - buff->zbuff; in xmlZMemBuffExtend()
1669 buff->zctrl.next_out = tmp_ptr + cur_used; in xmlZMemBuffExtend()
1670 buff->zctrl.avail_out = new_size - cur_used; in xmlZMemBuffExtend()
1704 buff->zctrl.avail_in = len; in xmlZMemBuffAppend()
1705 buff->zctrl.next_in = (unsigned char *)src; in xmlZMemBuffAppend()
1706 while ( buff->zctrl.avail_in > 0 ) { in xmlZMemBuffAppend()
1711 min_accept = buff->zctrl.avail_in / DFLT_ZLIB_RATIO; in xmlZMemBuffAppend()
1712 if ( buff->zctrl.avail_out <= min_accept ) { in xmlZMemBuffAppend()
1717 z_err = deflate( &buff->zctrl, Z_NO_FLUSH ); in xmlZMemBuffAppend()
1758 z_err = deflate( &buff->zctrl, Z_FINISH ); in xmlZMemBuffGetContent()
1774 if ( buff->zctrl.avail_out < ( 2 * sizeof( unsigned long ) ) ) { in xmlZMemBuffGetContent()
1785 append_reverse_ulong( buff, buff->zctrl.total_in ); in xmlZMemBuffGetContent()
1787 zlgth = buff->zctrl.next_out - buff->zbuff; in xmlZMemBuffGetContent()