Home
last modified time | relevance | path

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

123456

/PHP-7.2/ext/oci8/
H A Dphp_oci8_int.h49 #if defined(min)
50 #undef min
/PHP-7.2/ext/standard/tests/general_functions/
H A Dprint_r.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 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_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
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
/PHP-7.2/ext/pcre/pcrelib/
H A Dpcre_jit_compile.c1122 max -= min; in get_class_iterator_size()
1151 min = 1; in detect_repeat()
1160 min++; in detect_repeat()
1163 if (min == 2) in detect_repeat()
5486 min = 0; in compile_xclass_matchingpath()
5498 if (c < min) min = c; in compile_xclass_matchingpath()
5507 if (c < min) min = c; in compile_xclass_matchingpath()
5525 if (*other_cases < min) min = *other_cases; in compile_xclass_matchingpath()
6880 min = 0; in compile_ref_iterator_matchingpath()
6886 min = 1; in compile_ref_iterator_matchingpath()
[all …]
H A Dpcre_compile.c1610 int min = 0; in read_repeat_counts() local
1615 min = min * 10 + (int)(*p++ - CHAR_0); in read_repeat_counts()
1616 if (min > 65535) in read_repeat_counts()
1623 if (*p == CHAR_RIGHT_CURLY_BRACKET) max = min; else in read_repeat_counts()
1637 if (max < min) in read_repeat_counts()
1645 *minp = min; in read_repeat_counts()
/PHP-7.2/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.phpt143 …func_mysqli_stmt_get_result($link, $engine, "i", "INTEGER", (defined("PHP_INT_MAX")) ? min(2147483…
145 …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.phpt185 …func_mysqli_stmt_bind_result($link, $engine, "i", "INTEGER", (defined("PHP_INT_MAX")) ? min(214748…
187 …result($link, $engine, "i", "INTEGER UNSIGNED", (defined("PHP_INT_MAX")) ? min(4294967295, 2147483…
/PHP-7.2/ext/opcache/Optimizer/
H A Dzend_ssa.h26 zend_long min; member
H A Dzend_ssa.c119 zend_ssa_phi *phi, int min_var, int max_var, zend_long min, zend_long max, in pi_range() argument
127 constraint->range.min = min; in pi_range()
H A Dsccp.c1465 && info->range.min == info->range.max) { in value_from_type_and_range()
1466 ZVAL_LONG(tmp, info->range.min); in value_from_type_and_range()
/PHP-7.2/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.2/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 Dstrspn_variation11.phpt62 -2147483648, // min negative integer
H A Dstrcspn_variation11.phpt62 -2147483648, // min negative integer
/PHP-7.2/ext/date/lib/
H A Dparse_date.re187 { "min", TIMELIB_MINUTE, 1 },
972 reltextunit = 'ms' | 'µs' | (('msec'|'millisecond'|'µsec'|'microsecond'|'usec'|'sec'|'second'|'min'…
2044 timelib_sll min;
2047 min = timelib_get_nr_ex((char **) &ptr, 2, &length);
2048 if (min == TIMELIB_UNSET || length != 2) {
2051 s->time->i = min;
/PHP-7.2/ext/standard/
H A Darray.c1280 PHP_FUNCTION(min) in PHP_FUNCTION() argument
1307 zval *min, result; in PHP_FUNCTION() local
1310 min = &args[0]; in PHP_FUNCTION()
1313 is_smaller_function(&result, &args[i], min); in PHP_FUNCTION()
1315 min = &args[i]; in PHP_FUNCTION()
1319 ZVAL_COPY(return_value, min); in PHP_FUNCTION()

Completed in 131 milliseconds

123456