Searched refs:bzs (Results 1 – 1 of 1) sorted by relevance
505 bz_stream bzs; in PHP_FUNCTION() local511 bzs.bzalloc = NULL; in PHP_FUNCTION()512 bzs.bzfree = NULL; in PHP_FUNCTION()518 bzs.next_in = source; in PHP_FUNCTION()519 bzs.avail_in = source_len; in PHP_FUNCTION()524 bzs.next_out = ZSTR_VAL(dest); in PHP_FUNCTION()526 while ((error = BZ2_bzDecompress(&bzs)) == BZ_OK && bzs.avail_in > 0) { in PHP_FUNCTION()528 bzs.avail_out = source_len; in PHP_FUNCTION()529 size = (bzs.total_out_hi32 * (unsigned int) -1) + bzs.total_out_lo32; in PHP_FUNCTION()541 size = (bzs.total_out_hi32 * (unsigned int) -1) + bzs.total_out_lo32; in PHP_FUNCTION()[all …]
Completed in 5 milliseconds