Home
last modified time | relevance | path

Searched refs:max (Results 51 – 75 of 244) sorted by relevance

12345678910

/PHP-7.1/ext/soap/tests/
H A Dbug73037.phpt19 function get_data($max)
34 $max = $max < $min ? $min : $max;
38 while (strlen($data) + strlen($end) < $max) {
52 if (strlen($begin) + strlen($tmp) + strlen($end) > $max) {
/PHP-7.1/ext/standard/tests/strings/
H A Dsprintf_variation34.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_variation46.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_variation34_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_variation16.phpt16 -0x80000001, // float value, beyond max negative int
17 0x800000001, // float value, beyond max positive int
18 020000000001, // float value, beyond max positive int
19 -020000000001, // float value, beyond max negative int
/PHP-7.1/ext/standard/tests/general_functions/
H A Dis_int.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
60 -0x80000001, // float value, beyond max negative int
61 0x800000001, // float value, beyond max positive int
62 020000000001, // float value, beyond max positive int
[all …]
H A Dis_int_64bit.phpt21 -2147483648, // max negative integer value
23 2147483647, // max positive integer value
29 -0x80000000, // max negative integer as hexadecimal
30 0x7fffffff, // max positive integer as hexadecimal
31 0x7FFFFFFF, // max positive integer as hexadecimal
34 -020000000000, // max negative integer as octal
35 017777777777, // max positive integer as octal
62 -0x80000001, // float value, beyond max negative int
63 0x800000001, // float value, beyond max positive int
64 020000000001, // float value, beyond max positive int
[all …]
H A Dvar_export-locale.phpt25 '-2147483648', // max negative integer value
27 2147483647, // max positive integer value
33 -0x7fffffff - 1, // max negative integer as hexadecimal
34 '0x7fffffff', // max positive integer as hexadecimal
35 0x7FFFFFFF, // max positive integer as hexadecimal
38 -017777777777 - 1, // max negative integer as octal
39 017777777777, // max positive integer as octal
84 (float)-0x80000001, // float value, beyond max negative int
85 (float)0x800000001, // float value, beyond max positive int
86 (float)020000000001, // float value, beyond max positive int
[all …]
/PHP-7.1/ext/zlib/tests/
H A Dgzuncompress_basic1.phpt30 echo "\n-- Calling gzuncompress() with max length of $length --\n";
41 -- Calling gzuncompress() with max length of 3547 --
/PHP-7.1/ext/odbc/tests/
H A Dbug73725.phpt2 Bug #73725 Unable to retrieve value of varchar(max) type
12 odbc_do($conn, "CREATE TABLE bug73725(i int, txt varchar(max), k int)");
/PHP-7.1/ext/wddx/tests/
H A Dbug35410.phpt23 <var name="max">
61 ["max"]=>
H A Dbug35410_64bit.phpt23 <var name="max">
61 ["max"]=>
/PHP-7.1/ext/standard/tests/array/
H A Darray_reduce_variation2.phpt18 var_dump(array_reduce("bogusarray", "max"));
20 var_dump(array_reduce(new stdClass(), "max"));
H A Dbug65304.phpt2 Bug #65304 (Use of max int in array_sum)
/PHP-7.1/sapi/fpm/fpm/events/
H A Dselect.c38 static int fpm_event_select_init(int max);
75 static int fpm_event_select_init(int max) /* {{{ */ in fpm_event_select_init() argument
/PHP-7.1/ext/mbstring/oniguruma/
H A Dregcomp.c2158 *max = distance_add(*max, tmax); in get_max_match_length()
2165 if (r == 0 && *max < tmax) *max = tmax; in get_max_match_length()
2200 if (*max < tmax) *max = tmax; in get_max_match_length()
2222 *max = distance_multiply(*max, qn->upper); in get_max_match_length()
4058 mml->max = max; in set_mml()
4071 to->max = from->max; in copy_mml()
4078 to->max = distance_add(to->max, from->max); in add_mml()
4086 to->max = distance_add(to->max, len);
4094 if (to->max < from->max) to->max = from->max; in alt_merge_mml()
4474 to->len.max, add->len.max); in concat_left_node_opt_info()
[all …]
/PHP-7.1/ext/pcre/tests/
H A Dbug67238.phpt2 Bug #67238 Ungreedy and min/max quantifier bug in PCRE 8.34 upstream
/PHP-7.1/ext/standard/tests/math/
H A Dbug75514.phpt2 Bug #75514 mt_rand returns value outside [$min,$max]
/PHP-7.1/ext/pdo_pgsql/tests/
H A Dbug69752.phpt29 $max = 1000;
32 for($i = 0; $i < $max; $i++) {
/PHP-7.1/ext/date/tests/
H A Dcheckdate_basic1.phpt24 var_dump( checkdate(7, 2, 32767) ); // max year
31 var_dump( checkdate(7, 2, 32768) ); // >max year
/PHP-7.1/ext/pdo_mysql/
H A Dget_error_codes.php10 $maxlen = max($maxlen, strlen($matches[1]));
/PHP-7.1/ext/standard/tests/file/
H A Dbug61961.phpt2 Bug #61961 (file_get_content leaks when access empty file with max length)
/PHP-7.1/ext/standard/tests/network/
H A Dbug72071.phpt2 Bug #72071 setcookie allows max-age to be negative
/PHP-7.1/tests/basic/
H A Dbug61000.phpt2 Bug #61000 (Exceeding max nesting level doesn't delete numerical vars)
/PHP-7.1/sapi/fpm/fpm/
H A Dfpm_events.c310 int max; in fpm_event_init_main() local
323 max = 1; /* only one FD is necessary at startup for the master process signal pipe */ in fpm_event_init_main()
327 max += (wp->config->pm_max_children * 2); in fpm_event_init_main()
331 if (module->init(max) < 0) { in fpm_event_init_main()
336 zlog(ZLOG_DEBUG, "event module is %s and %d fds have been reserved", module->name, max); in fpm_event_init_main()

Completed in 65 milliseconds

12345678910