/PHP-8.4/ext/standard/tests/array/range/ |
H A D | range_bug71197.phpt | 5 range(PHP_INT_MIN, PHP_INT_MIN + 513, .01); 6 range(PHP_INT_MIN + 513, PHP_INT_MIN, .01);
|
H A D | range_bug71132.phpt | 5 var_dump(count(range(PHP_INT_MIN + 513, PHP_INT_MIN))); 6 var_dump(count(range(PHP_INT_MIN, PHP_INT_MIN + 513)));
|
/PHP-8.4/ext/standard/tests/strings/ |
H A D | substr_int_min.phpt | 2 substr() with PHP_INT_MIN offset or length 5 var_dump(substr('x', PHP_INT_MIN)); 6 var_dump(substr('x', 0, PHP_INT_MIN));
|
/PHP-8.4/ext/standard/tests/math/ |
H A D | intdiv.phpt | 10 var_dump(intdiv(PHP_INT_MIN, PHP_INT_MIN)); 12 var_dump(intdiv(PHP_INT_MIN, -1)); 30 Exception: Division of PHP_INT_MIN by -1 is not an integer
|
/PHP-8.4/ext/standard/tests/array/ |
H A D | max_int_float_optimisation.phpt | 17 var_dump(max(PHP_INT_MIN+1, PHP_INT_MIN, PHP_INT_MIN*2)); 31 var_dump(max(PHP_INT_MIN*2, PHP_INT_MIN, PHP_INT_MIN+1));
|
H A D | min_int_float_optimisation.phpt | 18 var_dump(min(PHP_INT_MIN+1, PHP_INT_MIN, PHP_INT_MIN*2)); 32 var_dump(min(PHP_INT_MIN*2, PHP_INT_MIN, PHP_INT_MIN+1));
|
/PHP-8.4/ext/standard/tests/general_functions/ |
H A D | bug76717.phpt | 2 Bug #76717: var_export() does not create a parsable value for PHP_INT_MIN 6 $min = eval('return '.var_export(PHP_INT_MIN, true).';'); 8 var_dump($min === PHP_INT_MIN);
|
/PHP-8.4/ext/sqlite3/tests/ |
H A D | bug73333.phpt | 7 if (!defined('PHP_INT_MIN')) define('PHP_INT_MIN', -PHP_INT_MAX-1); 11 foreach ([PHP_INT_MIN, PHP_INT_MAX] as $value) {
|
/PHP-8.4/ext/opcache/tests/jit/ |
H A D | bug80782.phpt | 2 Bug #80782 (DASM_S_RANGE_VREG on PHP_INT_MIN-1) 13 define('LONG_MIN', PHP_INT_MIN);
|
/PHP-8.4/Zend/tests/type_declarations/union_types/ |
H A D | incdec_prop.phpt | 22 $test->prop = PHP_INT_MIN; 26 $test->prop = PHP_INT_MIN; 41 $test->prop = PHP_INT_MIN; 46 $test->prop = PHP_INT_MIN; 70 $test->prop2 = PHP_INT_MIN; 77 $test->prop2 = PHP_INT_MIN; 100 $test->prop2 = PHP_INT_MIN; 108 $test->prop2 = PHP_INT_MIN;
|
/PHP-8.4/tests/lang/constants/ |
H A D | PHP_INT_32bit.phpt | 2 Test PHP_INT_MIN, PHP_INT_MAX and PHP_INT_SIZE (32-bit) 9 var_dump(PHP_INT_MIN);
|
H A D | PHP_INT_64bit.phpt | 2 Test PHP_INT_MIN, PHP_INT_MAX and PHP_INT_SIZE (64-bit) 9 var_dump(PHP_INT_MIN);
|
/PHP-8.4/Zend/tests/ |
H A D | string_offset_int_min_max.phpt | 2 Accessing PHP_INT_MAX and PHP_INT_MIN as string offsets 8 var_dump($str[PHP_INT_MIN]);
|
H A D | runtime_compile_time_binary_operands.phpt | 57 PHP_INT_MIN, 59 PHP_INT_MIN * 2, 96 (string) PHP_INT_MIN * 2, 100 if ($param === PHP_INT_MIN) { 101 return "PHP_INT_MIN";
|
H A D | int_conversion_exponents.phpt | 11 var_dump("-1.2345e9" % PHP_INT_MIN); 22 var_dump(" -1.2345e9 abc" % PHP_INT_MIN);
|
H A D | zend_signed_multiply-64bit-2.phpt | 8 var_dump($c, intdiv(PHP_INT_MIN, 10), intdiv(PHP_INT_MIN, 10) * $c);
|
/PHP-8.4/ext/mbstring/tests/ |
H A D | gh16360.phpt | 8 mb_substr("abcd", PHP_INT_MIN, 4, "UTF-8"); 13 mb_substr("abcd", 0, PHP_INT_MIN, "UTF-8");
|
/PHP-8.4/ext/pcre/tests/ |
H A D | gh16189.phpt | 7 …_match( '/<(\w+)[\s\w\-]+ id="S44_i89ew">/', '<br><div id="S44_i89ew">', $matches, 0, PHP_INT_MIN); 12 …ch_all( '/<(\w+)[\s\w\-]+ id="S44_i89ew">/', '<br><div id="S44_i89ew">', $matches, 0, PHP_INT_MIN);
|
/PHP-8.4/Zend/tests/offsets/ |
H A D | test_offset_helpers.inc | 16 if ($value === PHP_INT_MIN) { 17 return "PHP_INT_MIN"; 170 //PHP_INT_MIN, 172 PHP_INT_MIN * 2, 191 (string) PHP_INT_MIN * 2,
|
/PHP-8.4/ext/date/tests/ |
H A D | createFromTimestamp_32bit.phpt | 14 PHP_INT_MIN, 16 PHP_INT_MIN + 0.5, 18 PHP_INT_MIN - 0.5, 20 PHP_INT_MIN - 1025.0,
|
H A D | date_create-relative.phpt | 8 if (!defined('PHP_INT_MIN')) { 9 define('PHP_INT_MIN', intval(-PHP_INT_MAX - 1));
|
/PHP-8.4/Zend/tests/zend_ini/ |
H A D | zend_ini_parse_quantity_overflow.phpt | 33 'No overflow 005' => strval(PHP_INT_MIN), 37 'Subject overflow 002' => decrement(strval(PHP_INT_MIN)), 39 'Multiplier overflow 002' => strval(PHP_INT_MIN).'K',
|
/PHP-8.4/ext/calendar/tests/ |
H A D | gh16258.phpt | 8 jddayofweek(PHP_INT_MIN, 1);
|
/PHP-8.4/ext/gmp/tests/ |
H A D | gh16411.phpt | 7 gmp_export("-9223372036854775808", PHP_INT_MAX, PHP_INT_MIN);
|
/PHP-8.4/ext/random/tests/01_functions/ |
H A D | random_int.phpt | 13 var_dump(is_int(random_int(PHP_INT_MIN, PHP_INT_MAX)));
|