Searched refs:ceil (Results 1 – 16 of 16) sorted by relevance
2 Tests for floor en ceil5 $a = ceil (-0); $b = ceil (-1); $c = ceil (-1.5); 6 $d = ceil (-1.8); $e = ceil (-2.7);9 $a = ceil (0); $b = ceil (0.5); $c = ceil (1);10 $d = ceil (1.5); $e = ceil (1.8); $f = ceil (2.7);
2 Test ceil() - error conditions - incorrect number of args5 /* Prototype : float ceil ( float $value )10 echo "*** Testing ceil() : error conditions ***\n";15 var_dump(ceil($arg_0, $extra_arg));18 var_dump(ceil());22 *** Testing ceil() : error conditions ***26 Warning: ceil() expects exactly 1 parameter, 2 given in %s on line %d31 Warning: ceil() expects exactly 1 parameter, 0 given in %s on line %d
12 -1 ~== ceil(-1.5)13 2 ~== ceil( 1.5)16 LONG_MIN ~== ceil(LONG_MIN - 0.5)17 LONG_MIN+1 ~== ceil(LONG_MIN + 0.5)24 LONG_MAX ~== ceil(LONG_MAX - 0.5)25 LONG_MAX+1 ~== ceil(LONG_MAX + 0.5)
2 Test ceil() - basic function test for ceil()11 /* Prototype : float ceil ( float $value )16 echo "*** Testing ceil() : basic functionality ***\n";40 $res = ceil($values[$i]);47 *** Testing ceil() : basic functionality ***
2 Test ceil() function : usage variations - different data types as $value arg7 /* Prototype : float ceil ( float $value )12 echo "*** Testing ceil() : usage variations ***\n";66 // loop through each element of $inputs to check the behaviour of ceil()70 var_dump(ceil($input));77 *** Testing ceil() : usage variations ***
2 Test ceil function : 64bit long tests24 var_dump(ceil($longVal));
56 PHP_FUNCTION(ceil);
122 tmp_value = ceil(value - 0.5); in php_round_helper()124 (mode == PHP_ROUND_HALF_EVEN && value == (-0.5 + 2 * ceil(tmp_value/2.0))) || in php_round_helper()125 (mode == PHP_ROUND_HALF_ODD && value == (-0.5 + 2 * ceil(tmp_value/2.0) + 1.0))) in php_round_helper()326 PHP_FUNCTION(ceil) in PHP_FUNCTION() argument337 RETURN_DOUBLE(ceil(Z_DVAL_P(value))); in PHP_FUNCTION()
138 dest = zend_string_alloc((size_t) ceil(src_len * 0.75), 0); in php_uudecode()
2885 PHP_FE(ceil, arginfo_ceil)
58 ZVAL_DOUBLE(return_value, result<0?ceil(result):floor(result)); in internal_parse_to_timestamp()
740 $numelems = max(pow(2, ceil(log(1.5*count($origdp))/log(2))),16);
218 $size = 512 * ceil((int)$hdr['size'] / 512);
667 digest_length = (zend_long) ceil((float) length / 2.0); in PHP_FUNCTION()670 loops = (zend_long) ceil((float) digest_length / (float) ops->digest_size); in PHP_FUNCTION()
957 windows_size = 2 * (int)ceil(width_d) + 1; in _gdContributionsCalc()966 int iRight = MIN((int)ceil(dCenter + width_d), (int)src_size - 1); in _gdContributionsCalc()
3087 dmod = ceil(dmod);// + two_pow_32;
Completed in 52 milliseconds