Lines Matching refs:zctrl
1431 z_stream zctrl; member
1459 *buff->zctrl.next_out = ( data & 0xff ); in append_reverse_ulong()
1461 buff->zctrl.next_out++; in append_reverse_ulong()
1486 z_err = deflateEnd( &buff->zctrl ); in xmlFreeZMemBuff()
1492 deflateEnd( &buff->zctrl ); in xmlFreeZMemBuff()
1536 z_err = deflateInit2( &buff->zctrl, compression, Z_DEFLATED, in xmlCreateZMemBuff()
1556 buff->zctrl.next_out = buff->zbuff + hdr_lgth; in xmlCreateZMemBuff()
1557 buff->zctrl.avail_out = buff->size - hdr_lgth; in xmlCreateZMemBuff()
1588 cur_used = buff->zctrl.next_out - buff->zbuff; in xmlZMemBuffExtend()
1605 buff->zctrl.next_out = tmp_ptr + cur_used; in xmlZMemBuffExtend()
1606 buff->zctrl.avail_out = new_size - cur_used; in xmlZMemBuffExtend()
1640 buff->zctrl.avail_in = len; in xmlZMemBuffAppend()
1641 buff->zctrl.next_in = (unsigned char *)src; in xmlZMemBuffAppend()
1642 while ( buff->zctrl.avail_in > 0 ) { in xmlZMemBuffAppend()
1647 min_accept = buff->zctrl.avail_in / DFLT_ZLIB_RATIO; in xmlZMemBuffAppend()
1648 if ( buff->zctrl.avail_out <= min_accept ) { in xmlZMemBuffAppend()
1653 z_err = deflate( &buff->zctrl, Z_NO_FLUSH ); in xmlZMemBuffAppend()
1694 z_err = deflate( &buff->zctrl, Z_FINISH ); in xmlZMemBuffGetContent()
1710 if ( buff->zctrl.avail_out < ( 2 * sizeof( unsigned long ) ) ) { in xmlZMemBuffGetContent()
1721 append_reverse_ulong( buff, buff->zctrl.total_in ); in xmlZMemBuffGetContent()
1723 zlgth = buff->zctrl.next_out - buff->zbuff; in xmlZMemBuffGetContent()