Home
last modified time | relevance | path

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

1234567891011

/PHP-7.3/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 Dintval.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
79 '-0x80000001', // float value, beyond max negative int
80 '0x800000001', // float value, beyond max positive int
81 '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.3/ext/standard/tests/file/
H A Dfread_variation2.phpt118 -- Reading file content less than max. file size, expeceted : 0 bytes --
133 -- Reading file content less than max. file size, expeceted : 0 bytes --
148 -- Reading file content less than max. file size, expeceted : 0 bytes --
163 -- Reading file content less than max. file size, expeceted : 0 bytes --
178 -- Reading file content less than max. file size, expeceted : 0 bytes --
193 -- Reading file content less than max. file size, expeceted : 0 bytes --
208 -- Reading file content less than max. file size, expeceted : 0 bytes --
223 -- Reading file content less than max. file size, expeceted : 0 bytes --
238 -- Reading file content less than max. file size, expeceted : 0 bytes --
255 -- Reading file content less than max. file size, expeceted : 0 bytes --
[all …]
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.3/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.3/sapi/fpm/tests/
H A Dstatus-basic.phpt24 'max listen queue' => 0,
28 'max active processes' => 1,
29 'max children reached' => 0,
/PHP-7.3/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.h43 PHPAPI int php_var_unserialize(zval *rval, const unsigned char **p, const unsigned char *max, php_u…
44 PHPAPI int php_var_unserialize_ref(zval *rval, const unsigned char **p, const unsigned char *max, p…
45 PHPAPI int php_var_unserialize_intern(zval *rval, const unsigned char **p, const unsigned char *max
/PHP-7.3/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"
/PHP-7.3/tests/classes/
H A Diterators_004.phpt20 public $max = 3;
33 return $this->num < $this->max;
57 object:max=>3
/PHP-7.3/ext/standard/tests/math/
H A Dallowed_rounding_error.inc9 $max = $expected + $small_number;
11 if ($number < $max && $number > $min ) {
/PHP-7.3/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.3/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.3/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…
/PHP-7.3/sapi/fpm/fpm/
H A Dfpm_children.c372 int max; in fpm_children_make() local
377 max = wp->config->pm_start_servers; in fpm_children_make()
379 max = wp->running_children + nb_to_spawn; in fpm_children_make()
383 max = 0; /* do not create any child at startup */ in fpm_children_make()
385 max = wp->running_children + nb_to_spawn; in fpm_children_make()
388 max = wp->config->pm_max_children; in fpm_children_make()
398 …while (fpm_pctl_can_spawn_children() && wp->running_children < max && (fpm_global_config.process_m… in fpm_children_make()
434 if (wp->running_children < max) { in fpm_children_make()

Completed in 46 milliseconds

1234567891011