Lines Matching defs:bz
665 bz_stream bz;
668 memset(&bz, 0, sizeof(bz));
669 rc = BZ2_bzDecompressInit(&bz, 0, 0);
673 bz.next_in = CCAST(char *, RCAST(const char *, old));
674 bz.avail_in = CAST(uint32_t, *n);
675 bz.next_out = RCAST(char *, *newch);
676 bz.avail_out = CAST(unsigned int, bytes_max);
678 rc = BZ2_bzDecompress(&bz);
680 BZ2_bzDecompressEnd(&bz);
685 /* assert(bz.total_out_hi32 == 0); */
686 *n = CAST(size_t, bz.total_out_lo32);
687 rc = BZ2_bzDecompressEnd(&bz);