Home
last modified time | relevance | path

Searched refs:max (Results 176 – 200 of 216) sorted by relevance

123456789

/PHP-5.5/ext/oci8/
H A Doci8_collection.c257 int php_oci_collection_max(php_oci_collection *collection, long *max TSRMLS_DC) in php_oci_collection_max()
261 PHP_OCI_CALL_RETURN(*max, OCICollMax, (connection->env, collection->collection)); in php_oci_collection_max()
H A Doci8_interface.c2317 long max; local
2332 if (php_oci_collection_max(collection, &max TSRMLS_CC)) {
2335 RETURN_LONG(max);
/PHP-5.5/ext/gd/libgd/
H A Dgd_interpolation.c2462 gdPointF extent[4], min, max, point; in gdTransformAffineBoundingBox() local
2481 max=extent[0]; in gdTransformAffineBoundingBox()
2488 if (max.x < extent[i].x) in gdTransformAffineBoundingBox()
2489 max.x=extent[i].x; in gdTransformAffineBoundingBox()
2490 if (max.y < extent[i].y) in gdTransformAffineBoundingBox()
2491 max.y=extent[i].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()
H A Dgd.c98 static int gdAlphaOverlayColor(int src, int dst, int max);
2960 static int gdAlphaOverlayColor (int src, int dst, int max ) in gdAlphaOverlayColor() argument
2972 if( dst > max ) { in gdAlphaOverlayColor()
2974 return dst + (src << 1) - (dst * src / max) - max; in gdAlphaOverlayColor()
2977 return dst * src / max; in gdAlphaOverlayColor()
/PHP-5.5/ext/standard/tests/general_functions/
H A Dgettype_settype_variation4.phpt126 -2147483648, // max -ne int value
131 0xF674593039, // a hex value > than max int
135 02224242434343152, // an octal value > than max int
/PHP-5.5/ext/standard/tests/strings/
H A Dstrspn_variation7.phpt85 2147483647, // max positive integer
H A Dstrcspn_variation7.phpt86 2147483647, // max positive integer
H A Dstrspn_variation8.phpt81 2147483647, // max positive integer
91 2147483647, // max positive integer
H A Dstrcspn_variation8.phpt80 2147483647, // max positive integer
90 2147483647, // max positive integer
H A Dstrcspn_variation12.phpt50 2147483647, // max positive integer
60 2147483647, // max positive integer
H A Dstrcspn_variation11.phpt61 2147483647, // max positive integer
H A Dstrspn_variation11.phpt61 2147483647, // max positive integer
H A Dstrspn_variation12.phpt51 2147483647, // max positive integer
61 2147483647, // max positive integer
/PHP-5.5/ext/spl/internal/
H A Dsplfileobject.inc240 * @return current setting for max line
/PHP-5.5/
H A DREADME.GIT-RULES100 <max 79 characters short description>\n
/PHP-5.5/ext/gd/
H A Dgd.c4284 #define max(a, b) (a > b ? a : b) in PHP_FUNCTION() macro
4316 str_bbox.urx = max(str_bbox.urx, max(x1, max(x2, max(x3, x4)))); in PHP_FUNCTION()
4317 str_bbox.ury = max(str_bbox.ury, max(y1, max(y2, max(y3, y4)))); in PHP_FUNCTION()
/PHP-5.5/ext/standard/
H A Darray.c992 PHP_FUNCTION(max) in PHP_FUNCTION() argument
1020 zval **max, result; in PHP_FUNCTION() local
1023 max = args[0]; in PHP_FUNCTION()
1026 is_smaller_or_equal_function(&result, *args[i], *max TSRMLS_CC); in PHP_FUNCTION()
1028 max = args[i]; in PHP_FUNCTION()
1032 RETVAL_ZVAL(*max, 1, 0); in PHP_FUNCTION()
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_get_result_types.phpt143 …func_mysqli_stmt_get_result($link, $engine, "i", "INTEGER", (defined("PHP_INT_MAX")) ? max(-1 * PH…
H A Dmysqli_stmt_bind_result.phpt185 …func_mysqli_stmt_bind_result($link, $engine, "i", "INTEGER", (defined("PHP_INT_MAX")) ? max(-1 * P…
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_compile.c1610 int max = -1; in read_repeat_counts() local
1622 if (*p == CHAR_RIGHT_CURLY_BRACKET) max = min; else in read_repeat_counts()
1626 max = 0; in read_repeat_counts()
1629 max = max * 10 + (int)(*p++ - CHAR_0); in read_repeat_counts()
1630 if (max > 65535) in read_repeat_counts()
1636 if (max < min) in read_repeat_counts()
1645 *maxp = max; in read_repeat_counts()
/PHP-5.5/ext/standard/tests/file/
H A Dfgetcsv_variation26.phpt64 // use the right delimiter and enclosure with max length
H A Dfread_basic.phpt83 // reading 1000 bytes within the file max size
/PHP-5.5/ext/date/lib/
H A Dparse_iso_intervals.re399 /*!max:re2c */
/PHP-5.5/ext/exif/
H A Dexif.c96 #ifndef max
97 # define max(a,b) ((a)>(b) ? (a) : (b)) macro
2377 value_ptr = safe_emalloc(max(byte_count, 4), 1, 0); in exif_ifd_make_value()
/PHP-5.5/ext/phar/phar/
H A Dpharcommand.inc1528 $l = max(strlen($which), $l);
1582 $klen = max($klen, strlen($k));

Completed in 155 milliseconds

123456789