Home
last modified time | relevance | path

Searched refs:min (Results 76 – 100 of 124) sorted by relevance

12345

/PHP-5.5/ext/standard/tests/strings/
H A Dstr_split_variation6_64bit.phpt34 -2147483648, //min negative integer
H A Dstr_split_variation7.phpt36 -2147483648, //min negative integer
H A Dchunk_split_variation8.phpt41 -PHP_INT_MAX - 1, // min negative integer
H A Dstr_pad.phpt65 /* args less than min. expected of 2 */
H A Dstrspn_variation7.phpt86 -2147483648, // min negative integer
H A Dstrcspn_variation7.phpt87 -2147483648, // min negative integer
/PHP-5.5/ext/date/lib/
H A Dtimelib.h138 void timelib_decimal_hour_to_hms(double h, int *hour, int *min, int *sec);
H A Dparse_date.re191 { "min", TIMELIB_MINUTE, 1 },
931 reltextunit = (('sec'|'second'|'min'|'minute'|'hour'|'day'|'fortnight'|'forthnight'|'month'|'year')…
1970 timelib_sll min;
1973 min = timelib_get_nr_ex((char **) &ptr, 2, &length);
1974 if (min == TIMELIB_UNSET || length != 2) {
1977 s->time->i = min;
/PHP-5.5/ext/oci8/
H A Dphp_oci8_int.h47 #if defined(min)
48 #undef min
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_send_long_data_packet_size_libmysql.phpt52 $limit = min(floor($max_allowed_packet / 1024 / 2), 10240);
H A Dmysqli_stmt_send_long_data_packet_size_mysqlnd.phpt50 $limit = min(floor($max_allowed_packet / 1024 / 2), 10240);
H A Dmysqli_stmt_attr_set.phpt62 $invalid_attr = mt_rand(-1 * (min(4294967296, PHP_INT_MAX) + 1), min(4294967296, PHP_INT_MAX));
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…
/PHP-5.5/ext/standard/
H A Dcrypt_blowfish.c656 BF_word min) in BF_crypt() argument
694 if (count < min || BF_decode(data.binary.salt, &setting[7], 16)) { in BF_crypt()
H A Darray.c941 PHP_FUNCTION(min) in PHP_FUNCTION() argument
969 zval **min, result; in PHP_FUNCTION() local
972 min = args[0]; in PHP_FUNCTION()
975 is_smaller_function(&result, *args[i], *min TSRMLS_CC); in PHP_FUNCTION()
977 min = args[i]; in PHP_FUNCTION()
981 RETVAL_ZVAL(*min, 1, 0); in PHP_FUNCTION()
/PHP-5.5/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.phpt44 -2147483648, // min range of integer
45 -2147483647, // min range of integer + 1
47 -0x80000000, // min range of hexadecimal integer
49 -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-5.5/ext/gd/libgd/
H A Dgd_interpolation.c2462 gdPointF extent[4], min, max, point; in gdTransformAffineBoundingBox() local
2480 min=extent[0]; in gdTransformAffineBoundingBox()
2484 if (min.x > extent[i].x) in gdTransformAffineBoundingBox()
2485 min.x=extent[i].x; in gdTransformAffineBoundingBox()
2486 if (min.y > extent[i].y) in gdTransformAffineBoundingBox()
2487 min.y=extent[i].y; in gdTransformAffineBoundingBox()
2493 bbox->x = (int) min.x; in gdTransformAffineBoundingBox()
2494 bbox->y = (int) min.y; in gdTransformAffineBoundingBox()
2495 bbox->width = (int) floor(max.x - min.x) - 1; in gdTransformAffineBoundingBox()
2496 bbox->height = (int) floor(max.y - min.y); in gdTransformAffineBoundingBox()
/PHP-5.5/ext/pdo_firebird/
H A Dfirebird_statement.c480 min(param->namelen, var->aliasname_length))) in firebird_stmt_param_hook()
482 min(param->namelen, var->sqlname_length)))) { in firebird_stmt_param_hook()
/PHP-5.5/ext/gd/
H A Dgd.c4285 #define min(a, b) (a < b ? a : b) in PHP_FUNCTION() macro
4314 str_bbox.llx = min(str_bbox.llx, min(x1, min(x2, min(x3, x4)))); in PHP_FUNCTION()
4315 str_bbox.lly = min(str_bbox.lly, min(y1, min(y2, min(y3, y4)))); in PHP_FUNCTION()

Completed in 59 milliseconds

12345