Home
last modified time | relevance | path

Searched refs:max (Results 1 – 25 of 245) sorted by relevance

12345678910

/PHP-7.4/ext/standard/tests/array/
H A Dmax_variation2.phpt2 Test variations in usage of max()
12 var_dump(max(array(2,1,2)));
13 var_dump(max(array(-2,1,2)));
14 var_dump(max(array(2.1,2.11,2.09)));
15 var_dump(max(array("", "t", "b")));
16 var_dump(max(array(false, true, false)));
17 var_dump(max(array(true, false, true)));
18 var_dump(max(array(1, true, false, true)));
19 var_dump(max(array(0, true, false, true)));
20 var_dump(max(array(0, 1, array(2,3))));
[all …]
H A Dmax.phpt2 max() tests
8 var_dump(max());
9 var_dump(max(1));
10 var_dump(max(array()));
11 var_dump(max(new stdclass));
12 var_dump(max(2,1,2));
13 var_dump(max(2.1,2.11,2.09));
14 var_dump(max("", "t", "b"));
15 var_dump(max(false, true, false));
16 var_dump(max(true, false, true));
[all …]
H A Dmax_basic.phpt2 Test return type and value for expected input max()
6 * proto mixed max(mixed arg1 [, mixed arg2 [, mixed ...]])
12 var_dump(max(2,1,2));
13 var_dump(max(-2,1,2));
14 var_dump(max(2.1,2.11,2.09));
15 var_dump(max("", "t", "b"));
16 var_dump(max(false, true, false));
17 var_dump(max(true, false, true));
18 var_dump(max(1, true, false, true));
19 var_dump(max(0, true, false, true));
[all …]
H A Dmax_variation1.phpt2 Test variations in usage of max()
6 * proto mixed max(mixed arg1 [, mixed arg2 [, mixed ...]])
11 var_dump(max(2147483645, 2147483646) );
12 var_dump(max(2147483647, 2147483648) );
13 var_dump(max(2147483646, 2147483648) );
14 var_dump(max(-2147483647, -2147483646) );
15 var_dump(max(-2147483648, -2147483647) );
16 var_dump(max(-2147483649, -2147483647) );
20 var_dump(max(0, 1 , 2, 3, 4, 5, 6, 7, 8, 9, 0, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20,0, 1 , 2,…
H A Dmax_basiclong_64bit.phpt2 Test max function : 64bit long tests
27 var_dump(max($arrayVals));
28 var_dump(max($longVals));
/PHP-7.4/ext/standard/tests/math/
H A Dmt_rand_basic.phpt32 $max = array(100,
44 echo "FAILED: res = ", $res, " min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
50 echo "PASSED: range min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
72 echo "FAILED: res = ", $res, " min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
87 PASSED: range min = 10 max = 100
89 PASSED: range min = 10 max = 19
95 PASSED range min = 1 max = 100
96 PASSED range min = 0 max = 100
97 PASSED range min = 0 max = 100
98 PASSED range min = 10 max = 100
[all …]
H A Drand_basic.phpt32 $max = array(100,
41 $res = rand($min[$x], $max[$x]);
44 echo "FAILED: res = ", $res, " min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
50 echo "PASSED: range min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
84 PASSED: range min = 0 max = %i
89 PASSED: range min = 10 max = 19
95 PASSED range min = 1 max = 100
96 PASSED range min = 0 max = 100
97 PASSED range min = 0 max = 100
98 PASSED range min = 10 max = 100
[all …]
H A Dbug75170.phpt11 $max = 0x66666666;
14 $halves[(mt_rand(0, $max - 1) >> 1) & 1]++;
22 $max = 0x66666666;
25 $halves[mt_rand(0, $max - 1) / ($max / 2)]++;
/PHP-7.4/ext/standard/
H A Drand.c52 zend_long max; in PHP_FUNCTION() local
61 Z_PARAM_LONG(max) in PHP_FUNCTION()
64 if (max < min) { in PHP_FUNCTION()
65 RETURN_LONG(php_mt_rand_common(max, min)); in PHP_FUNCTION()
68 RETURN_LONG(php_mt_rand_common(min, max)); in PHP_FUNCTION()
H A Dphp_random.h37 #define php_random_int_throw(min, max, result) \ argument
38 php_random_int((min), (max), (result), 1)
39 #define php_random_int_silent(min, max, result) \ argument
40 php_random_int((min), (max), (result), 0)
43 PHPAPI int php_random_int(zend_long min, zend_long max, zend_long *result, zend_bool should_throw);
H A Dmt_rand.c278 PHPAPI zend_long php_mt_rand_range(zend_long min, zend_long max) in php_mt_rand_range() argument
280 zend_ulong umax = max - min; in php_mt_rand_range()
294 PHPAPI zend_long php_mt_rand_common(zend_long min, zend_long max) in php_mt_rand_common() argument
299 return php_mt_rand_range(min, max); in php_mt_rand_common()
305 RAND_RANGE_BADSCALING(n, min, max, PHP_MT_RAND_MAX); in php_mt_rand_common()
316 zend_long max; in PHP_FUNCTION() local
326 Z_PARAM_LONG(max) in PHP_FUNCTION()
329 if (UNEXPECTED(max < min)) { in PHP_FUNCTION()
330 …docref(NULL, E_WARNING, "max(" ZEND_LONG_FMT ") is smaller than min(" ZEND_LONG_FMT ")", max, min); in PHP_FUNCTION()
334 RETURN_LONG(php_mt_rand_common(min, max)); in PHP_FUNCTION()
H A Drandom.c228 PHPAPI int php_random_int(zend_long min, zend_long max, zend_long *result, zend_bool should_throw) in php_random_int() argument
233 if (min == max) { in php_random_int()
238 umax = (zend_ulong) max - (zend_ulong) min; in php_random_int()
276 zend_long max; in PHP_FUNCTION() local
281 Z_PARAM_LONG(max) in PHP_FUNCTION()
284 if (min > max) { in PHP_FUNCTION()
289 if (php_random_int_throw(min, max, &result) == FAILURE) { in PHP_FUNCTION()
/PHP-7.4/sapi/fpm/fpm/events/
H A Ddevpoll.c33 static int fpm_event_devpoll_init(int max);
71 static int fpm_event_devpoll_init(int max) /* {{{ */ in fpm_event_devpoll_init() argument
82 if (max < 1) { in fpm_event_devpoll_init()
87 pollfds = malloc(sizeof(struct pollfd) * max); in fpm_event_devpoll_init()
89 zlog(ZLOG_ERROR, "poll: unable to allocate %d events", max); in fpm_event_devpoll_init()
92 memset(pollfds, 0, sizeof(struct pollfd) * max); in fpm_event_devpoll_init()
95 for (i = 0; i < max; i++) { in fpm_event_devpoll_init()
100 active_pollfds = malloc(sizeof(struct pollfd) * max); in fpm_event_devpoll_init()
103 zlog(ZLOG_ERROR, "poll: unable to allocate %d events", max); in fpm_event_devpoll_init()
106 memset(active_pollfds, 0, sizeof(struct pollfd) * max); in fpm_event_devpoll_init()
[all …]
H A Dpoll.c30 static int fpm_event_poll_init(int max);
70 static int fpm_event_poll_init(int max) /* {{{ */ in fpm_event_poll_init() argument
74 if (max < 1) { in fpm_event_poll_init()
79 pollfds = malloc(sizeof(struct pollfd) * max); in fpm_event_poll_init()
81 zlog(ZLOG_ERROR, "poll: unable to allocate %d events", max); in fpm_event_poll_init()
84 memset(pollfds, 0, sizeof(struct pollfd) * max); in fpm_event_poll_init()
87 for (i = 0; i < max; i++) { in fpm_event_poll_init()
92 active_pollfds = malloc(sizeof(struct pollfd) * max); in fpm_event_poll_init()
95 zlog(ZLOG_ERROR, "poll: unable to allocate %d events", max); in fpm_event_poll_init()
98 memset(active_pollfds, 0, sizeof(struct pollfd) * max); in fpm_event_poll_init()
[all …]
H A Depoll.c29 static int fpm_event_epoll_init(int max);
66 static int fpm_event_epoll_init(int max) /* {{{ */ in fpm_event_epoll_init() argument
68 if (max < 1) { in fpm_event_epoll_init()
73 epollfd = epoll_create(max + 1); in fpm_event_epoll_init()
80 epollfds = malloc(sizeof(struct epoll_event) * max); in fpm_event_epoll_init()
82 zlog(ZLOG_ERROR, "epoll: unable to allocate %d events", max); in fpm_event_epoll_init()
85 memset(epollfds, 0, sizeof(struct epoll_event) * max); in fpm_event_epoll_init()
88 nepollfds = max; in fpm_event_epoll_init()
H A Dkqueue.c32 static int fpm_event_kqueue_init(int max);
72 static int fpm_event_kqueue_init(int max) /* {{{ */ in fpm_event_kqueue_init() argument
74 if (max < 1) { in fpm_event_kqueue_init()
84 kevents = malloc(sizeof(struct kevent) * max); in fpm_event_kqueue_init()
86 zlog(ZLOG_ERROR, "epoll: unable to allocate %d events", max); in fpm_event_kqueue_init()
90 memset(kevents, 0, sizeof(struct kevent) * max); in fpm_event_kqueue_init()
92 nkevents = max; in fpm_event_kqueue_init()
H A Dport.c30 static int fpm_event_port_init(int max);
67 static int fpm_event_port_init(int max) /* {{{ */ in fpm_event_port_init() argument
76 if (max < 1) { in fpm_event_port_init()
81 events = malloc(sizeof(port_event_t) * max); in fpm_event_port_init()
83 zlog(ZLOG_ERROR, "port: Unable to allocate %d events", max); in fpm_event_port_init()
87 nevents = max; in fpm_event_port_init()
/PHP-7.4/ext/filter/tests/
H A D046.phpt7 $max = sprintf("%d", PHP_INT_MAX);
8 switch($max) {
32 test_validation($max, "max");
38 max filtered: int(%d)
39 max is_long: bool(true)
40 max equal: bool(true)
/PHP-7.4/ext/date/tests/
H A Dformat-negative-timestamp.phpt8 $max = getrandmax();
9 $max_2 = $max / 2;
12 $new_tm = rand(1, $max);
/PHP-7.4/ext/standard/tests/general_functions/
H A Dvar_export_basic1.phpt23 '-2147483648' => '-2147483648', // max negative integer value
25 '2147483647' => 2147483647, // max positive integer value
31 "-0x80000000" => -0x7FFFFFFF - 1, // max negative integer as hexadecimal
32 "'0x7fffffff'" => '0x7fffffff', // max positive integer as hexadecimal
33 "0x7FFFFFFF" => 0x7FFFFFFF, // max positive integer as hexadecimal
36 "-020000000000" => -017777777777 - 1, // max negative integer as octal
37 "017777777777" => 017777777777, // max positive integer as octal
H A Dvar_export_basic1_32.phpt23 '-2147483648' => '-2147483648', // max negative integer value
25 '2147483647' => 2147483647, // max positive integer value
31 "-0x80000000" => -0x7FFFFFFF - 1, // max negative integer as hexadecimal
32 "'0x7fffffff'" => '0x7fffffff', // max positive integer as hexadecimal
33 "0x7FFFFFFF" => 0x7FFFFFFF, // max positive integer as hexadecimal
36 "-020000000000" => -017777777777 - 1, // max negative integer as octal
37 "017777777777" => 017777777777, // max positive integer as octal
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 …]
/PHP-7.4/ext/opcache/Optimizer/
H A Doptimize_temp_vars_5.c38 if (i > max) { \
39 max = i; \
54 int max = -1; in zend_optimize_temporary_variables() local
87 var = max; in zend_optimize_temporary_variables()
91 max = MAX(max, var + num); in zend_optimize_temporary_variables()
130 i = ++max; in zend_optimize_temporary_variables()
186 op_array->T = max + 1; in zend_optimize_temporary_variables()
H A Dzend_inference.c906 tmp->max = MIN(constraint->range.max, tmp->max); in zend_inference_calc_range()
911 …tmp->max = MIN(ssa->var_info[constraint->max_ssa_var].range.max + constraint->range.max, tmp->max); in zend_inference_calc_range()
935 tmp->max = constraint->range.max; in zend_inference_calc_range()
959 tmp->max = MAX(tmp->max, ssa->var_info[p->sources[i]].range.max); in zend_inference_calc_range()
1525 ssa->var_info[var].range.max = max; in zend_inference_init_range()
1543 r->max > var_info->range.max) { in zend_inference_widening_meet()
1548 var_info->range.max == r->max && in zend_inference_widening_meet()
1583 var_info->range.max > r->max) { in zend_inference_narrowing_meet()
1584 r->max = var_info->range.max; in zend_inference_narrowing_meet()
1593 var_info->range.max == r->max && in zend_inference_narrowing_meet()
[all …]
/PHP-7.4/Zend/
H A Dzend_ptr_stack.h24 int top, max; member
46 if (stack->top+count > stack->max) { \ in END_EXTERN_C()
49 stack->max += PTR_STACK_BLOCK_SIZE; \ in END_EXTERN_C()
50 } while (stack->top+count > stack->max); \ in END_EXTERN_C()
51 …stack->elements = (void **) perealloc(stack->elements, (sizeof(void *) * (stack->max)), stack->per… in END_EXTERN_C()

Completed in 76 milliseconds

12345678910