Home
last modified time | relevance | path

Searched refs:plength (Results 1 – 1 of 1) sorted by relevance

/PHP-5.3/ext/zlib/
H A Dzlib.c538 unsigned long plength=0, length; in PHP_FUNCTION() local
549 plength = limit; in PHP_FUNCTION()
559 length = plength ? plength : (unsigned long)data_len * (1 << factor++); in PHP_FUNCTION()
563 } while ((status == Z_BUF_ERROR) && (!plength) && (factor < maxfactor)); in PHP_FUNCTION()
645 unsigned long plength=0, length; in PHP_FUNCTION() local
661 plength = limit; in PHP_FUNCTION()
685 length = plength ? plength : (unsigned long)data_len * (1 << factor++); in PHP_FUNCTION()
701 …} while ((Z_BUF_ERROR == status || (Z_OK == status && stream.avail_in)) && !plength && factor < ma… in PHP_FUNCTION()
705 if ((plength && Z_OK == status) || factor >= maxfactor) { in PHP_FUNCTION()

Completed in 6 milliseconds