Home
last modified time | relevance | path

Searched refs:max (Results 26 – 50 of 245) sorted by relevance

12345678910

/PHP-7.4/ext/standard/tests/general_functions/
H A Dstrval.phpt35 -2147483648, // max negative integer value
37 2147483647, // max positive integer value
45 -0x80000000, // max negative integer as hexadecimal
46 0x7fffffff, // max positive integer as hexadecimal
47 0x7FFFFFFF, // max positive integer as hexadecimal
50 -020000000000, // max negative integer as octal
51 017777777777, // max positive integer as octal
54 -0x80000001, // float value, beyond max negative int
55 0x800000001, // float value, beyond max positive int
56 020000000001, // float value, beyond max positive int
[all …]
H A Dbug76717.phpt7 $max = eval('return '.var_export(PHP_INT_MAX, true).';');
9 var_dump($max === PHP_INT_MAX);
H A Dbug46587.phpt2 Bug #46587 (mt_rand() does not check that max is greater than min).
14 Warning: mt_rand(): max(3) is smaller than min(8) in %s on line %d
H A Dvar_export_basic3.phpt18 "-0x80000001" => (float)-0x80000001, // float value, beyond max negative int
19 "0x800000001" => (float)0x800000001, // float value, beyond max positive int
20 "020000000001" => (float)020000000001, // float value, beyond max positive int
21 "-020000000001" => (float)-020000000001, // float value, beyond max negative int
/PHP-7.4/Zend/
H A Dzend_stack.c29 stack->max = 0; in zend_stack_init()
37 if (stack->top >= stack->max) { in zend_stack_push()
38 stack->max += STACK_BLOCK_SIZE; in zend_stack_push()
39 stack->elements = safe_erealloc(stack->elements, stack->size, stack->max, 0); in zend_stack_push()
162 stack->top = stack->max = 0; in zend_stack_clean()
/PHP-7.4/ext/standard/
H A Dphp_mt_rand.h37 PHPAPI zend_long php_mt_rand_range(zend_long min, zend_long max);
38 PHPAPI zend_long php_mt_rand_common(zend_long min, zend_long max);
H A Dphp_var.h44 PHPAPI int php_var_unserialize(zval *rval, const unsigned char **p, const unsigned char *max, php_u…
45 PHPAPI int php_var_unserialize_ref(zval *rval, const unsigned char **p, const unsigned char *max, p…
46 PHPAPI int php_var_unserialize_intern(zval *rval, const unsigned char **p, const unsigned char *max
/PHP-7.4/sapi/fpm/tests/
H A Dstatus-basic.phpt24 'max listen queue' => 0,
28 'max active processes' => 1,
29 'max children reached' => 0,
/PHP-7.4/Zend/tests/
H A Dsymtable_cache_recursive_dtor.phpt7 static $max = 40;
9 if (self::$max-- < 0) return;
/PHP-7.4/ext/standard/tests/array/
H A Darray_push_error2.phpt2 Test array_push() function : error conditions - max int value as key
17 $array = array(PHP_INT_MAX => 'max');
31 string(3) "max"
H A Drange_variation1.phpt12 echo "\n*** Testing max/outof range values ***\n";
24 *** Testing max/outof range values ***
H A Drange_variation1_64bit.phpt12 echo "\n*** Testing max/outof range values ***\n";
24 *** Testing max/outof range values ***
/PHP-7.4/tests/classes/
H A Diterators_004.phpt20 public $max = 3;
33 return $this->num < $this->max;
57 object:max=>3
/PHP-7.4/ext/standard/tests/math/
H A Dallowed_rounding_error.inc9 $max = $expected + $small_number;
11 if ($number < $max && $number > $min ) {
/PHP-7.4/ext/standard/tests/file/
H A Dfread_variation1.phpt119 -- Reading file content less than max. file size, expeceted : 1000 bytes --
134 -- Reading file content less than max. file size, expeceted : 1000 bytes --
149 -- Reading file content less than max. file size, expeceted : 1000 bytes --
164 -- Reading file content less than max. file size, expeceted : 1000 bytes --
179 -- Reading file content less than max. file size, expeceted : 1000 bytes --
194 -- Reading file content less than max. file size, expeceted : 1000 bytes --
209 -- Reading file content less than max. file size, expeceted : 1000 bytes --
224 -- Reading file content less than max. file size, expeceted : 1000 bytes --
239 -- Reading file content less than max. file size, expeceted : 1000 bytes --
256 -- Reading file content less than max. file size, expeceted : 1000 bytes --
[all …]
/PHP-7.4/ext/filter/tests/
H A Dfilter_ipv4_rfc6890.phpt23 list($min, $max) = $range;
26 var_dump(filter_var($max, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_NO_PRIV_RANGE));
77 list($min, $max) = $range;
80 var_dump(filter_var($max, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_NO_RES_RANGE));
/PHP-7.4/ext/standard/tests/strings/
H A Dsprintf_variation10.phpt17 -2147483648, // max negative integer value
19 2147483647, // max positive integer value
25 -0x80000000, // max negative integer as hexadecimal
26 0x7fffffff, // max positive integer as hexadecimal
27 0x7FFFFFFF, // max positive integer as hexadecimal
30 -020000000000, // max negative integer as octal
31 017777777777 // max positive integer as octal
H A Dsprintf_variation3.phpt17 -2147483648, // max negative integer value
19 2147483647, // max positive integer value
25 -0x80000000, // max negative integer as hexadecimal
26 0x7fffffff, // max positive integer as hexadecimal
27 0x7FFFFFFF, // max positive integer as hexadecimal
30 -020000000000, // max negative integer as octal
31 017777777777 // max positive integer as octal
H A Dsprintf_variation28.phpt23 -2147483648, // max negative integer value
25 2147483647, // max positive integer value
31 -0x80000000, // max negative integer as hexadecimal
32 0x7fffffff, // max positive integer as hexadecimal
33 0x7FFFFFFF, // max positive integer as hexadecimal
36 -020000000000, // max negative integer as octal
37 017777777777 // max positive integer as octal
H A Dsprintf_variation28_64bit.phpt19 -2147483648, // max negative integer value
21 2147483647, // max positive integer value
27 -0x80000000, // max negative integer as hexadecimal
28 0x7fffffff, // max positive integer as hexadecimal
29 0x7FFFFFFF, // max positive integer as hexadecimal
32 -020000000000, // max negative integer as octal
33 017777777777 // max positive integer as octal
H A Dsprintf_variation40.phpt23 -2147483648, // max negative integer value
25 2147483647, // max positive integer value
31 -0x80000000, // max negative integer as hexadecimal
32 0x7fffffff, // max positive integer as hexadecimal
33 0x7FFFFFFF, // max positive integer as hexadecimal
36 -020000000000, // max negative integer as octal
37 017777777777 // max positive integer as octal
H A Dsprintf_variation40_64bit.phpt19 -2147483648, // max negative integer value
21 2147483647, // max positive integer value
27 -0x80000000, // max negative integer as hexadecimal
28 0x7fffffff, // max positive integer as hexadecimal
29 0x7FFFFFFF, // max positive integer as hexadecimal
32 -020000000000, // max negative integer as octal
33 017777777777 // max positive integer as octal
H A Dsprintf_variation19.phpt17 -2147483648, // max negative integer value
19 2147483647, // max positive integer value
25 -0x80000000, // max negative integer as hexadecimal
26 0x7fffffff, // max positive integer as hexadecimal
27 0x7FFFFFFF, // max positive integer as hexadecimal
30 -020000000000, // max negative integer as octal
31 017777777777 // max positive integer as octal
H A Dsprintf_variation21.phpt17 -2147483648, // max negative integer value
19 2147483647, // max positive integer value
25 -0x80000000, // max negative integer as hexadecimal
26 0x7fffffff, // max positive integer as hexadecimal
27 0x7FFFFFFF, // max positive integer as hexadecimal
30 -020000000000, // max negative integer as octal
31 017777777777 // max positive integer as octal
/PHP-7.4/ext/oci8/tests/
H A Darray_bind_013.phpt29 Warning: oci_bind_array_by_name(): You must provide max length value for empty arrays in %s on line…
32 Warning: oci_bind_array_by_name(): You must provide max length value for empty arrays in %s on line…
35 Warning: oci_bind_array_by_name(): You must provide max length value for empty arrays in %s on line…

Completed in 33 milliseconds

12345678910