/php-src/ext/standard/tests/math/ |
H A D | floor_basic.phpt | 2 Test floor() - basic function test for floor() 39 -- floor 0 -- 42 -- floor 0 -- 45 -- floor 0.5 -- 51 -- floor 1 -- 54 -- floor -1 -- 69 -- floor 31 -- 72 -- floor 95 -- 90 -- floor 1 -- 93 -- floor -- [all …]
|
H A D | floorceil.phpt | 2 Tests for floor en ceil 13 $a = floor (-0); $b = floor (-0.5); $c = floor (-1); 14 $d = floor (-1.5); $e = floor (-1.8); $f = floor (-2.7); 17 $a = floor (0); $b = floor (0.5); $c = floor (1); 18 $d = floor (1.5); $e = floor (1.8); $f = floor (2.7);
|
H A D | floor_variation1.phpt | 2 Test floor() function : usage variations - different data types as $value arg 7 echo "*** Testing floor() : usage variations ***\n"; 66 var_dump(floor($input)); 75 *** Testing floor() : usage variations *** 100 floor(): Argument #1 ($num) must be of type int|float, string given 103 floor(): Argument #1 ($num) must be of type int|float, string given 106 floor(): Argument #1 ($num) must be of type int|float, array given 109 floor(): Argument #1 ($num) must be of type int|float, string given 112 floor(): Argument #1 ($num) must be of type int|float, string given 115 floor(): Argument #1 ($num) must be of type int|float, string given [all …]
|
H A D | round.phpt | 17 var_dump(epsilon_equal( -2 , floor(-1.5) )); 18 var_dump(epsilon_equal( 1 , floor(1.5) )); 25 var_dump(epsilon_equal( LONG_MIN-1 , floor(LONG_MIN - 0.5) )); 26 var_dump(epsilon_equal( LONG_MIN , floor(LONG_MIN + 0.5) )); 33 var_dump(epsilon_equal( LONG_MAX-1 , floor(LONG_MAX - 0.5) )); 34 var_dump(epsilon_equal( LONG_MAX , floor(LONG_MAX + 0.5) ));
|
H A D | floor_basiclong_64bit.phpt | 2 Test floor function : 64bit long tests 24 var_dump(floor($longVal));
|
H A D | round_modes_ceiling_and_floor.phpt | 31 var_dump(floor($number) === round($number, 0, RoundingMode::NegativeInfinity));
|
/php-src/ext/bcmath/tests/number/methods/ |
H A D | floor.phpt | 2 BcMath\Number floor() 28 $method_ret = (new BcMath\Number($num))->floor();
|
/php-src/Zend/tests/ |
H A D | gh13178_2.phpt | 2 GH-13178: Unsetting last offset must floor iterator position
|
H A D | bug42143.phpt | 17 var_dump(is_nan(floor(1)) == true);
|
/php-src/ext/standard/ |
H A D | uuencode.c | 85 ee = s + (int) (floor((double)len / 3) * 3); in php_uuencode() 156 ee = s + (len == 45 ? 60 : (int) floor(len * 1.33)); in php_uudecode()
|
H A D | math.c | 198 tmp_value = floor(places > 0 ? value * exponent : value / exponent); in _php_math_round() 289 PHP_FUNCTION(floor) in PHP_FUNCTION() argument 301 RETURN_DOUBLE(floor(Z_DVAL_P(value))); in PHP_FUNCTION() 950 double fvalue = floor(Z_DVAL_P(arg)); /* floor it just in case */ in _php_math_zvaltobase()
|
/php-src/ext/pdo_mysql/tests/ |
H A D | pdo_mysql_attr_server_version.phpt | 43 $major = floor($version / 10000); 44 $minor = floor(($version - ($main * 10000)) / 100);
|
/php-src/ext/date/lib/ |
H A D | astro.c | 76 return (x - 360.0 * floor(x * INV360)); in astro_revolution() 84 return (x - 360.0 * floor(x * INV360 + 0.5)); in astro_rev180()
|
H A D | timelib.c | 198 *hour = floor(h); in timelib_decimal_hour_to_hms() 199 seconds = floor((h - *hour) * 3600); in timelib_decimal_hour_to_hms()
|
/php-src/ext/standard/tests/streams/ |
H A D | gh10031.phpt | 17 $chunks = floor($fsize / $chunksize); // 10 chunks * 99 bytes
|
/php-src/ext/mysqli/tests/ |
H A D | mysqli_stmt_send_long_data.phpt | 54 $limit = min(floor($max_allowed_packet / 1024 / 2), 10240); 58 if (floor($max_allowed_packet / 1024) <= 10240) {
|
H A D | mysqli_stmt_send_long_data_packet_size_mysqlnd.phpt | 45 $limit = min(floor($max_allowed_packet / 1024 / 2), 10240); 69 if (floor($max_allowed_packet / 1024 / 2) <= 10240) {
|
H A D | mysqli_fetch_assoc_bit.phpt | 56 $max_loops = floor($max_value/$rand_max);
|
H A D | mysqli_stmt_get_result_bit.phpt | 64 $max_loops = floor($max_value/$rand_max);
|
H A D | mysqli_stmt_bind_result_bit.phpt | 79 $max_loops = floor($max_value/$rand_max);
|
/php-src/ext/pdo_pgsql/tests/ |
H A D | bug69752.phpt | 42 $usage = intval(floor(memory_get_usage() / 1024));
|
/php-src/ext/bcmath/ |
H A D | bcmath_arginfo.h | 150 ZEND_METHOD(BcMath_Number, floor); 187 ZEND_ME(BcMath_Number, floor, arginfo_class_BcMath_Number_floor, ZEND_ACC_PUBLIC)
|
H A D | bcmath.stub.php | 82 public function floor(): Number {} function in BcMath\\Number
|
/php-src/ext/intl/dateformat/ |
H A D | dateformat_parse.c | 64 ZVAL_DOUBLE(return_value, result<0?ceil(result):floor(result)); in internal_parse_to_timestamp()
|
/php-src/ext/gd/libgd/ |
H A D | gd_avif.c | 106 tilesLog2 = floor(log2(tiles)); in setEncoderTilesAndThreads()
|