/php-src/ext/random/tests/03_randomizer/methods/ |
H A D | getFloat_equal_steps.phpt | 13 function run_test(Randomizer $r, float $min, float $max, int $count) { 14 printf("[%.17g, %.17g]\n", $min, $max); 18 $float = $r->getFloat($min, $max, IntervalBoundary::ClosedClosed);
|
/php-src/ext/standard/tests/file/ |
H A D | bug37158.phpt | 2 Bug #37158 (if userspace stream is present, fread() reads in 8192 max, otherwise it works)
|
H A D | fscanf_variation15.phpt | 23 -0x80000001, // float value, beyond max negative int 24 0x800000001, // float value, beyond max positive int 25 020000000001, // float value, beyond max positive int 26 -020000000001, // float value, beyond max negative int
|
H A D | fscanf_variation21.phpt | 23 -0x80000001, // float value, beyond max negative int 24 0x800000001, // float value, beyond max positive int 25 020000000001, // float value, beyond max positive int 26 -020000000001, // float value, beyond max negative int
|
H A D | fscanf_variation28.phpt | 23 -0x80000001, // float value, beyond max negative int 24 0x800000001, // float value, beyond max positive int 25 020000000001, // float value, beyond max positive int 26 -020000000001, // float value, beyond max negative int
|
H A D | fscanf_variation3.phpt | 29 -0x80000001, // float value, beyond max negative int 30 0x800000001, // float value, beyond max positive int 31 020000000001, // float value, beyond max positive int 32 -020000000001, // float value, beyond max negative int
|
H A D | fscanf_variation34.phpt | 29 -0x80000001, // float value, beyond max negative int 30 0x800000001, // float value, beyond max positive int 31 020000000001, // float value, beyond max positive int 32 -020000000001, // float value, beyond max negative int
|
H A D | fscanf_variation40.phpt | 29 -0x80000001, // float value, beyond max negative int 30 0x800000001, // float value, beyond max positive int 31 020000000001, // float value, beyond max positive int 32 -020000000001, // float value, beyond max negative int
|
H A D | fscanf_variation46.phpt | 23 -0x80000001, // float value, beyond max negative int 24 0x800000001, // float value, beyond max positive int 25 020000000001, // float value, beyond max positive int 26 -020000000001, // float value, beyond max negative int
|
/php-src/ext/standard/tests/general_functions/ |
H A D | floatval_variation1.phpt | 13 "-2147483648" => -2147483648, // max negative integer value 14 "2147483647" => 2147483648, // max positive integer value
|
H A D | floatval.phpt | 58 -2147483648, // max negative integer value 59 2147483648, // max positive integer value
|
/php-src/ext/random/ |
H A D | engine_pcgoneseq128xslrr64.c | 58 static zend_long range(void *state, zend_long min, zend_long max) in range() argument 63 }, min, max); in range()
|
/php-src/ext/standard/ |
H A D | var_unserializer.re | 459 #define UNSERIALIZE_PASSTHRU rval, p, max, var_hash 483 if (!php_var_unserialize_internal(&key, p, max, NULL)) { 731 if (*p >= max || **p != '}') { 745 if (max - (*p) < 2) { 760 if (datalen < 0 || (max - (*p)) <= datalen) { 884 limit = max; 1029 maxlen = max - YYCURSOR; 1066 maxlen = max - YYCURSOR; 1151 maxlen = max - YYCURSOR; 1300 if (*p >= max - 2) { [all …]
|
/php-src/tests/lang/operators/ |
H A D | operator_gt_variation.phpt | 2 Test > operator : max int 32bit range
|
H A D | operator_lt_variation.phpt | 2 Test < operator : max int 32bit range
|
H A D | operator_gt_variation_64bit.phpt | 2 Test > operator : max int 64bit range
|
H A D | operator_lt_variation_64bit.phpt | 2 Test < operator : max int 64bit range
|
H A D | operator_gt_or_equal_variation_64bit.phpt | 2 Test >= operator : max int 64bit range
|
H A D | operator_lt_or_equal_variation.phpt | 2 Test <= operator : max int 32bit range
|
H A D | operator_lt_or_equal_variation_64bit.phpt | 2 Test <= operator : max int 64bit range
|
H A D | operator_equals_variation.phpt | 2 Test == operator : max int 32bit range
|
H A D | operator_equals_variation_64bit.phpt | 2 Test == operator : max int 64bit range
|
H A D | operator_gt_or_equal_variation.phpt | 2 Test >= operator : max int 32bit range
|
H A D | operator_identical_variation.phpt | 2 Test === operator : max int 32bit range
|
H A D | operator_identical_variation_64bit.phpt | 2 Test === operator : max int 64bit range
|