Lines Matching refs:next_out

171     cb->zstr.next_out = (Bytef *) data;  in compress_buffer_input()
308 cb->zstr.next_out = (unsigned char *) buffer; in compress_buffer_output()
353 cb->zstr.next_out = (unsigned char *) buffer; in compress_buffer_flush()
453 cb->zstr.next_out = (unsigned char *) buffer; in compress_buffer_shutdown_output()
611 zstr.next_out = outbuf; in gunzip_and_write()
712 zstr.next_out = *buf + 10; in read_and_gzip()
743 assert(zstr.next_out == *buf + zstr.total_out); in read_and_gzip()
752 zstr.next_out = *buf + zstr.total_out; in read_and_gzip()
755 assert(zstr.next_out == *buf + zstr.total_out); in read_and_gzip()
775 assert(zstr.next_out == *buf + zstr.total_out); in read_and_gzip()
784 zstr.next_out = *buf + zstr.total_out; in read_and_gzip()
787 assert(zstr.next_out == *buf + zstr.total_out); in read_and_gzip()
789 *zstr.next_out++ = (unsigned char)(crc & 0xff); in read_and_gzip()
790 *zstr.next_out++ = (unsigned char)((crc >> 8) & 0xff); in read_and_gzip()
791 *zstr.next_out++ = (unsigned char)((crc >> 16) & 0xff); in read_and_gzip()
792 *zstr.next_out++ = (unsigned char)((crc >> 24) & 0xff); in read_and_gzip()
794 *zstr.next_out++ = (unsigned char)(zstr.total_in & 0xff); in read_and_gzip()
795 *zstr.next_out++ = (unsigned char)((zstr.total_in >> 8) & 0xff); in read_and_gzip()
796 *zstr.next_out++ = (unsigned char)((zstr.total_in >> 16) & 0xff); in read_and_gzip()
797 *zstr.next_out++ = (unsigned char)((zstr.total_in >> 24) & 0xff); in read_and_gzip()
802 assert(zstr.next_out == *buf + zstr.total_out); in read_and_gzip()