Searched refs:deflate_add (Results 1 – 10 of 10) sorted by relevance
/php-src/ext/zlib/tests/ |
H A D | deflate_add_error.phpt | 2 Test incremental deflate_add() error functionality 10 var_dump(deflate_add($badResource, "test")); 19 var_dump(deflate_add($resource, "test", $badFlushType)); 26 deflate_add(): Argument #1 ($context) must be of type DeflateContext, resource given 27 deflate_add(): Argument #3 ($flush_mode) must be one of ZLIB_NO_FLUSH, ZLIB_PARTIAL_FLUSH, ZLIB_SYN…
|
H A D | deflate_init_reuse.phpt | 9 deflate_add($resource, $char); 11 deflate_add($resource, "", ZLIB_FINISH); 17 $compressed .= deflate_add($resource, $char, ZLIB_NO_FLUSH); 19 $compressed .= deflate_add($resource, "", ZLIB_FINISH);
|
H A D | deflate_add_block_v123.phpt | 2 Test deflate_add() errors with ZLIB_BLOCK in zlib < 1.2.4 16 var_dump(deflate_add($resource, "aaaaaaaaaaaaaaaaaaaaaa", ZLIB_BLOCK)); 20 Warning: deflate_add(): zlib >= 1.2.4 required for BLOCK deflate; current version: %s in %s on line…
|
H A D | deflate_add_buffer_full.phpt | 2 Test deflate_add() buffer issue with data that fills deflate buffer while using ZLIB_SYNC_FLUSH on … 20 $deflated = deflate_add( 28 $deflated = deflate_add( 36 $deflated = deflate_add(
|
H A D | bug74240.phpt | 2 Bug #74240 (deflate_add can allocate too much memory) 17 $output = deflate_add(
|
H A D | deflate_add_basic.phpt | 2 Test incremental deflate_add() functionality 18 $deflated = deflate_add($resource, $buffer, $flushType); 24 $deflated = deflate_add($resource, $buffer, ZLIB_FINISH);
|
H A D | dictionary_usage.phpt | 11 $a = deflate_add($r, "abdcde", ZLIB_FINISH); 15 $dictStr_a = deflate_add($r, "abdcde", ZLIB_FINISH);
|
/php-src/ext/zlib/ |
H A D | zlib_arginfo.h | 159 ZEND_FUNCTION(deflate_add); 191 ZEND_FE(deflate_add, arginfo_deflate_add)
|
H A D | zlib.stub.php | 275 function deflate_add(DeflateContext $context, string $data, int $flush_mode = ZLIB_SYNC_FLUSH): str… function
|
H A D | zlib.c | 1170 PHP_FUNCTION(deflate_add) in PHP_FUNCTION() argument
|
Completed in 10 milliseconds