Searched refs:inflate_add (Results 1 – 11 of 11) sorted by relevance
/PHP-8.0/ext/zlib/tests/ |
H A D | inflate_add_error.phpt | 2 Test incremental inflate_add() error functionality 14 var_dump(inflate_add($badResource, "test")); 22 var_dump(inflate_add($resource, "test", $badFlushType)); 29 inflate_add(): Argument #1 ($context) must be of type InflateContext, resource given 30 inflate_add(): Argument #3 ($flush_mode) must be one of ZLIB_NO_FLUSH, ZLIB_PARTIAL_FLUSH, ZLIB_SYN…
|
H A D | inflate_init_reuse.phpt | 17 $inflated .= inflate_add($resource, $compressed[$i]); 19 $inflated .= inflate_add($resource, "", ZLIB_FINISH); 25 $inflated .= inflate_add($resource, $compressed[$i]); 27 $inflated .= inflate_add($resource, "", ZLIB_FINISH);
|
H A D | dictionary_usage.phpt | 19 var_dump(inflate_add($r, $a, ZLIB_FINISH)); 22 var_dump(inflate_add($r, $a, ZLIB_FINISH)); 30 Warning: inflate_add(): Dictionary does not match expected dictionary (incorrect adler32 hash) in %…
|
H A D | bug75299.phpt | 2 Bug #75299 Wrong reflection on inflate_init and inflate_add 10 $r = new ReflectionFunction('inflate_add');
|
H A D | inflate_add_basic.phpt | 2 Test incremental inflate_add() functionality 21 $inflated = inflate_add($resource, $buffer); 27 $inflated = inflate_add($resource, $buffer, ZLIB_FINISH);
|
H A D | bug73944.phpt | 9 $a = inflate_add($in, file_get_contents(__DIR__.'/bug73944_fixture_1.data')); 13 $b = inflate_add($in, file_get_contents(__DIR__.'/bug73944_fixture_2.data'));
|
H A D | inflate_get_status.phpt | 21 $buf .= inflate_add($ctx, substr($compressed, $i, 1)); 32 inflate_add($ctx, substr($compressed, 0, 12));
|
H A D | inflate_get_read_len.phpt | 16 $buf = inflate_add($ctx, $compressed);
|
/PHP-8.0/ext/zlib/ |
H A D | zlib_arginfo.h | 162 ZEND_FUNCTION(inflate_add); 195 ZEND_FE(inflate_add, arginfo_inflate_add)
|
H A D | zlib.stub.php | 112 function inflate_add(InflateContext $context, string $data, int $flush_mode = ZLIB_SYNC_FLUSH): str… function
|
H A D | zlib.c | 940 PHP_FUNCTION(inflate_add) in PHP_FUNCTION() argument
|
Completed in 14 milliseconds