Searched refs:bzs (Results 1 – 1 of 1) sorted by relevance
553 bz_stream bzs; in PHP_FUNCTION() local559 bzs.bzalloc = NULL; in PHP_FUNCTION()560 bzs.bzfree = NULL; in PHP_FUNCTION()566 bzs.next_in = source; in PHP_FUNCTION()567 bzs.avail_in = source_len; in PHP_FUNCTION()571 bzs.next_out = dest = emalloc(bzs.avail_out + 1); in PHP_FUNCTION()573 while ((error = BZ2_bzDecompress(&bzs)) == BZ_OK && bzs.avail_in > 0) { in PHP_FUNCTION()575 bzs.avail_out = source_len; in PHP_FUNCTION()576 size = (bzs.total_out_hi32 * (unsigned int) -1) + bzs.total_out_lo32; in PHP_FUNCTION()586 size = (bzs.total_out_hi32 * (unsigned int) -1) + bzs.total_out_lo32; in PHP_FUNCTION()[all …]
Completed in 7 milliseconds