Home
last modified time | relevance | path

Searched refs:min (Results 101 – 125 of 141) sorted by relevance

123456

/PHP-7.1/ext/standard/tests/general_functions/
H A Dprint_r_64bit.phpt43 -2147483648, // min range of integer
44 -2147483647, // min range of integer + 1
46 -0x80000000, // min range of hexadecimal integer
48 -020000000000 // min range of octal integer
H A Dvar_dump.phpt37 -2147483648, // min range of integer
38 -2147483647, // min range of integer + 1
40 -0x80000000, // min range of hexadecimal integer
42 -020000000000 // min range of octal integer
H A Dvar_dump_64bit.phpt37 -2147483648, // min range of integer
38 -2147483647, // min range of integer + 1
40 -0x80000000, // min range of hexadecimal integer
42 -020000000000 // min range of octal integer
/PHP-7.1/ext/gd/libgd/
H A Dgd_interpolation.c2539 gdPointF extent[4], min, max, point; in gdTransformAffineBoundingBox() local
2557 min=extent[0]; in gdTransformAffineBoundingBox()
2561 if (min.x > extent[i].x) in gdTransformAffineBoundingBox()
2562 min.x=extent[i].x; in gdTransformAffineBoundingBox()
2563 if (min.y > extent[i].y) in gdTransformAffineBoundingBox()
2564 min.y=extent[i].y; in gdTransformAffineBoundingBox()
2570 bbox->x = (int) min.x; in gdTransformAffineBoundingBox()
2571 bbox->y = (int) min.y; in gdTransformAffineBoundingBox()
2572 bbox->width = (int) floor(max.x - min.x) - 1; in gdTransformAffineBoundingBox()
2573 bbox->height = (int) floor(max.y - min.y); in gdTransformAffineBoundingBox()
/PHP-7.1/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_format.phpt15 function create_table($link, $column, $min, $max, $engine, $offset) {
35 $col1 = mt_rand($min, $max);
H A Dmysqli_stmt_get_result_types.phpt145 …func_mysqli_stmt_get_result($link, $engine, "i", "INTEGER", (defined("PHP_INT_MAX")) ? min(2147483…
147 …result($link, $engine, "i", "INTEGER UNSIGNED", (defined("PHP_INT_MAX")) ? min(4294967295, 2147483…
H A Dmysqli_stmt_send_long_data.phpt67 $limit = min(floor($max_allowed_packet / 1024 / 2), 10240);
H A Dmysqli_stmt_bind_result.phpt187 …func_mysqli_stmt_bind_result($link, $engine, "i", "INTEGER", (defined("PHP_INT_MAX")) ? min(214748…
189 …result($link, $engine, "i", "INTEGER UNSIGNED", (defined("PHP_INT_MAX")) ? min(4294967295, 2147483…
H A Dmysqli_stmt_bind_param.phpt199 …tatype($link, $engine, "i", "INTEGER UNSIGNED", (defined("PHP_INT_MAX")) ? min(4294967295, PHP_INT…
/PHP-7.1/ext/pdo_firebird/
H A Dfirebird_statement.c519 min(ZSTR_LEN(param->name), var->aliasname_length))) in firebird_stmt_param_hook()
521 min(ZSTR_LEN(param->name), var->sqlname_length)))) { in firebird_stmt_param_hook()
/PHP-7.1/ext/standard/tests/strings/
H A Dstr_pad.phpt65 /* args less than min. expected of 2 */
H A Dstrcspn_variation7.phpt87 -2147483648, // min negative integer
H A Dstrspn_variation7.phpt86 -2147483648, // min negative integer
H A Dstrcspn_variation8.phpt81 -2147483648, // min negative integer
91 -2147483648, // min negative integer
H A Dstrspn_variation8.phpt82 -2147483648, // min negative integer
92 -2147483648, // min negative integer
H A Dstrcspn_variation12.phpt51 -2147483648 // min negative integer
61 -2147483648 // min negative integer
H A Dstrcspn_variation11.phpt62 -2147483648, // min negative integer
H A Dstrspn_variation11.phpt62 -2147483648, // min negative integer
H A Dstrspn_variation12.phpt52 -2147483648, // min negative integer
62 -2147483648, // min negative integer
/PHP-7.1/ext/opcache/Optimizer/
H A Dzend_ssa.c110 zend_ssa_phi *phi, int min_var, int max_var, zend_long min, zend_long max, in pi_range() argument
118 constraint->range.min = min; in pi_range()
/PHP-7.1/ext/date/lib/
H A Dparse_date.re210 { "min", TIMELIB_MINUTE, 1 },
956 reltextunit = 'ms' | 'µs' | (('msec'|'millisecond'|'µsec'|'microsecond'|'usec'|'sec'|'second'|'min'…
2028 timelib_sll min;
2031 min = timelib_get_nr_ex((char **) &ptr, 2, &length);
2032 if (min == TIMELIB_UNSET || length != 2) {
2035 s->time->i = min;
/PHP-7.1/ext/standard/
H A Darray.c1265 PHP_FUNCTION(min) in PHP_FUNCTION() argument
1292 zval *min, result; in PHP_FUNCTION() local
1295 min = &args[0]; in PHP_FUNCTION()
1298 is_smaller_function(&result, &args[i], min); in PHP_FUNCTION()
1300 min = &args[i]; in PHP_FUNCTION()
1304 ZVAL_DEREF(min); in PHP_FUNCTION()
1305 ZVAL_COPY(return_value, min); in PHP_FUNCTION()
/PHP-7.1/ext/pcre/pcrelib/
H A Dpcre_compile.c1607 int min = 0; in read_repeat_counts() local
1612 min = min * 10 + (int)(*p++ - CHAR_0); in read_repeat_counts()
1613 if (min > 65535) in read_repeat_counts()
1620 if (*p == CHAR_RIGHT_CURLY_BRACKET) max = min; else in read_repeat_counts()
1634 if (max < min) in read_repeat_counts()
1642 *minp = min; in read_repeat_counts()
/PHP-7.1/ext/date/
H A Dphp_date.c87 ZEND_ARG_INFO(0, min)
96 ZEND_ARG_INFO(0, min)
1520 zend_long hou = 0, min = 0, sec = 0, mon = 0, day = 0, yea = 0; in php_mktime() local
1526 …if (zend_parse_parameters(ZEND_NUM_ARGS(), "|llllll", &hou, &min, &sec, &mon, &day, &yea) == FAILU… in php_mktime()
1561 now->i = min; in php_mktime()
/PHP-7.1/win32/build/
H A Dconfutils.js1783 var min = new Array(l);
1810 min[j] = header[j].length;

Completed in 163 milliseconds

123456