Searched refs:gmp_export (Results 1 – 7 of 7) sorted by relevance
/PHP-8.2/ext/gmp/tests/ |
H A D | gmp_export.phpt | 2 gmp_export() basic tests 38 $str = gmp_export($gmp, $test[1], $test[2]); 54 var_dump(bin2hex(gmp_export(0xff))); 58 var_dump(gmp_export(123, -1)); 63 var_dump(gmp_export(123, 0)); 70 var_dump(gmp_export(123, 1, GMP_MSW_FIRST | GMP_LSW_FIRST)); 75 var_dump(gmp_export(123, 1, GMP_BIG_ENDIAN | GMP_LITTLE_ENDIAN)); 83 gmp_export(): Argument #2 ($word_size) must be greater than or equal to 1 84 gmp_export(): Argument #2 ($word_size) must be greater than or equal to 1 85 gmp_export(): Argument #3 ($flags) cannot use multiple word order options [all …]
|
H A D | gh16411.phpt | 2 GH-16411 (gmp_export() can cause overflow) 7 gmp_export("-9223372036854775808", PHP_INT_MAX, PHP_INT_MIN); 10 Fatal error: Uncaught ValueError: gmp_export(): Argument #2 ($word_size) is too large for argument …
|
H A D | bug80560.phpt | 10 'gmp_export',
|
/PHP-8.2/ext/gmp/ |
H A D | gmp_arginfo.h | 202 ZEND_FUNCTION(gmp_export); 258 ZEND_FE(gmp_export, arginfo_gmp_export)
|
H A D | gmp.stub.php | 73 function gmp_export(GMP|int|string $num, int $word_size = 1, int $flags = GMP_MSW_FIRST | GMP_NATIV… function
|
H A D | gmp.c | 1051 ZEND_FUNCTION(gmp_export) in ZEND_FUNCTION() argument
|
/PHP-8.2/ |
H A D | NEWS | 97 . Fixed bug GH-16411 (gmp_export() can cause overflow). (cmb)
|
Completed in 30 milliseconds