Searched refs:deflate_add (Results 1 – 9 of 9) sorted by relevance
/PHP-7.1/ext/zlib/tests/ |
H A D | deflate_add_error.phpt | 2 Test incremental deflate_add() error functionality 12 var_dump(deflate_add($badResource, "test")); 16 var_dump(deflate_add($resource, "test", $badFlushType)); 19 Warning: deflate_add(): Invalid deflate resource in %s on line %d 22 Warning: deflate_add(): flush mode must be ZLIB_NO_FLUSH, ZLIB_PARTIAL_FLUSH, ZLIB_SYNC_FLUSH, ZLIB…
|
H A D | deflate_init_reuse.phpt | 13 deflate_add($resource, $char); 15 deflate_add($resource, "", ZLIB_FINISH); 21 $compressed .= deflate_add($resource, $char, ZLIB_NO_FLUSH); 23 $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)); 21 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 … 24 $deflated = deflate_add( 32 $deflated = deflate_add( 40 $deflated = deflate_add(
|
H A D | bug74240.phpt | 2 Bug #74240 (deflate_add can allocate too much memory) 21 $output = deflate_add(
|
H A D | deflate_add_basic.phpt | 2 Test incremental deflate_add() functionality 22 $deflated = deflate_add($resource, $buffer, $flushType); 28 $deflated = deflate_add($resource, $buffer, ZLIB_FINISH);
|
H A D | dictionary_usage.phpt | 9 $a = deflate_add($r, "abdcde", ZLIB_FINISH); 13 $dictStr_a = deflate_add($r, "abdcde", ZLIB_FINISH);
|
/PHP-7.1/ext/zlib/ |
H A D | zlib.c | 1111 PHP_FUNCTION(deflate_add) in PHP_FUNCTION() argument 1356 PHP_FE(deflate_add, arginfo_deflate_add)
|
/PHP-7.1/ |
H A D | NEWS | 1171 . Fixed bug #74240 (deflate_add can allocate too much memory). (Matt Bonneau) 1421 . Fixed bug #73373 (deflate_add does not verify that output was not truncated). 4167 . Added deflate_init(), deflate_add(), inflate_init(), inflate_add()
|
Completed in 30 milliseconds