Searched refs:czd_zstr (Results 1 – 1 of 1) sorted by relevance
69 z_stream czd_zstr; member158 if (zlib.z_initcomp(&czd->czd_zstr, Z_BEST_COMPRESSION, in ctf_zdata_init()185 czd->czd_zstr.next_out = (Bytef *)czd->czd_next; in ctf_zdata_grow()186 czd->czd_zstr.avail_out = CTF_COMPRESS_CHUNK; in ctf_zdata_grow()195 czd->czd_zstr.next_out = czd->czd_next; in ctf_zdata_compress_buffer()196 czd->czd_zstr.avail_out = czd->czd_allocsz - in ctf_zdata_compress_buffer()198 czd->czd_zstr.next_in = (Bytef *)buf; in ctf_zdata_compress_buffer()199 czd->czd_zstr.avail_in = bufsize; in ctf_zdata_compress_buffer()201 while (czd->czd_zstr.avail_in != 0) { in ctf_zdata_compress_buffer()202 if (czd->czd_zstr.avail_out == 0) { in ctf_zdata_compress_buffer()[all …]