/PHP-8.2/ext/standard/tests/math/ |
H A D | bug25694.phpt | 7 echo "round 0.045 = " . round(0.045, 2) . "\n"; 9 echo "round 0.055 = " . round(0.055, 2) . "\n"; 11 echo "round 5.045 = " . round(5.045, 2) . "\n"; 13 echo "round 5.055 = " . round(5.055, 2) . "\n"; 15 echo "round 3.025 = " . round(3.025, 2) . "\n"; 17 echo "round 4.025 = " . round(4.025, 2) . "\n"; 21 round 0.045 = 0.05 24 round 0.055 = 0.06 27 round 5.045 = 5.05 30 round 5.055 = 5.06 [all …]
|
H A D | round_modes.phpt | 2 round() with different rounding modes 5 var_dump (round (2.5, 0, PHP_ROUND_HALF_UP)); 6 var_dump (round (2.5, 0, PHP_ROUND_HALF_DOWN)); 7 var_dump (round (2.5, 0, PHP_ROUND_HALF_EVEN)); 8 var_dump (round (2.5, 0, PHP_ROUND_HALF_ODD)); 9 var_dump (round (-2.5, 0, PHP_ROUND_HALF_UP)); 10 var_dump (round (-2.5, 0, PHP_ROUND_HALF_DOWN)); 12 var_dump (round (-2.5, 0, PHP_ROUND_HALF_ODD)); 13 var_dump (round (3.5, 0, PHP_ROUND_HALF_UP)); 16 var_dump (round (3.5, 0, PHP_ROUND_HALF_ODD)); [all …]
|
H A D | bug24142.phpt | 2 Bug #24142 (round() problems) 7 echo "round({$v}, 2) -> ".round($v, 2)."\n"; 12 round(0.005, 2) -> 0.01 13 round(0.015, 2) -> 0.02 14 round(0.025, 2) -> 0.03 15 round(0.035, 2) -> 0.04 16 round(0.045, 2) -> 0.05 17 round(0.055, 2) -> 0.06 18 round(0.065, 2) -> 0.07 19 round(0.075, 2) -> 0.08 [all …]
|
H A D | round_large_exp.phpt | 2 round() works correctly for large exponents 5 var_dump (2e-22 == round (2e-22, 22, PHP_ROUND_HALF_UP)); 6 var_dump (1e-22 == round (1e-22, 22, PHP_ROUND_HALF_UP)); 7 var_dump (2e-23 == round (2e-23, 23, PHP_ROUND_HALF_UP)); 8 var_dump (1e-23 == round (1e-23, 23, PHP_ROUND_HALF_UP)); 9 var_dump (2e-24 == round (2e-24, 24, PHP_ROUND_HALF_UP)); 10 var_dump (1e-24 == round (1e-24, 24, PHP_ROUND_HALF_UP)); 11 var_dump (2e22 == round (2e22, -22, PHP_ROUND_HALF_UP)); 12 var_dump (1e22 == round (1e22, -22, PHP_ROUND_HALF_UP)); 13 var_dump (2e23 == round (2e23, -23, PHP_ROUND_HALF_UP)); [all …]
|
H A D | round_variation1.phpt | 2 Test round() function : usage variations - different data types as $val argument 7 echo "*** Testing round() : usage variations ***\n"; 80 var_dump(round($input, 14)); 89 *** Testing round() : usage variations *** 144 round(): Argument #1 ($num) must be of type int|float, string given 147 round(): Argument #1 ($num) must be of type int|float, string given 150 round(): Argument #1 ($num) must be of type int|float, array given 153 round(): Argument #1 ($num) must be of type int|float, string given 156 round(): Argument #1 ($num) must be of type int|float, string given 159 round(): Argument #1 ($num) must be of type int|float, string given [all …]
|
H A D | round.phpt | 21 var_dump(epsilon_equal( LONG_MIN-1 , round(LONG_MIN - 0.6) )); 22 var_dump(epsilon_equal( LONG_MIN , round(LONG_MIN - 0.4) )); 23 var_dump(epsilon_equal( LONG_MIN , round(LONG_MIN + 0.4) )); 24 var_dump(epsilon_equal( LONG_MIN+1 , round(LONG_MIN + 0.6) )); 29 var_dump(epsilon_equal( LONG_MAX-1 , round(LONG_MAX - 0.6) )); 30 var_dump(epsilon_equal( LONG_MAX , round(LONG_MAX - 0.4) )); 31 var_dump(epsilon_equal( LONG_MAX , round(LONG_MAX + 0.4) )); 32 var_dump(epsilon_equal( LONG_MAX+1 , round(LONG_MAX + 0.6) ));
|
H A D | round_basic.phpt | 2 Test round() - basic function test for round() 32 echo "round: $values[$i]\n"; 42 round: 123456789 58 round: 123.456789 74 round: -4.5679123 90 round: 12300 106 round: -4567 122 round: 2311527 138 round: 14680063 154 round: 1.234567 [all …]
|
H A D | round_bug71201.phpt | 2 Bug #71201 round() segfault on 64-bit builds 5 echo round(1.0, -2147483648), "\n";
|
H A D | round_prerounding.phpt | 2 round() prerounds results to precision 7 var_dump (round (0.285, 2, PHP_ROUND_HALF_UP));
|
H A D | round_basiclong_64bit.phpt | 2 Test round function : 64bit long tests 24 var_dump(round($longVal));
|
/PHP-8.2/ext/hash/ |
H A D | hash_snefru.c | 22 #define round(L, C, N, SB) \ macro 68 round(B15, B00, B01, t0); in Snefru() 69 round(B00, B01, B02, t0); in Snefru() 70 round(B01, B02, B03, t1); in Snefru() 71 round(B02, B03, B04, t1); in Snefru() 72 round(B03, B04, B05, t0); in Snefru() 73 round(B04, B05, B06, t0); in Snefru() 74 round(B05, B06, B07, t1); in Snefru() 75 round(B06, B07, B08, t1); in Snefru() 76 round(B07, B08, B09, t0); in Snefru() [all …]
|
H A D | hash_gost.c | 26 #define round(tables, k1, k2) \ macro 37 round(tables, key[0], key[1]) \ 38 round(tables, key[2], key[3]) \ 39 round(tables, key[4], key[5]) \ 40 round(tables, key[6], key[7]) \ 41 round(tables, key[0], key[1]) \ 42 round(tables, key[2], key[3]) \ 43 round(tables, key[4], key[5]) \ 44 round(tables, key[6], key[7]) \ 45 round(tables, key[0], key[1]) \ [all …]
|
H A D | hash_tiger.c | 38 #define round(a,b,c,x,mul) \ macro 51 round(a,b,c,x0,mul) \ 52 round(b,c,a,x1,mul) \ 53 round(c,a,b,x2,mul) \ 54 round(a,b,c,x3,mul) \ 55 round(b,c,a,x4,mul) \ 56 round(c,a,b,x5,mul) \ 57 round(a,b,c,x6,mul) \ 58 round(b,c,a,x7,mul)
|
H A D | hash_sha3.c | 90 unsigned char round; in permute() local 92 for (round = 0; round < 24; ++round) { in permute()
|
/PHP-8.2/ext/standard/ |
H A D | crypt_freesec.c | 374 int shifts, round; in des_setkey() local 424 for (round = 0; round < 16; round++) { in des_setkey() 427 shifts += key_shifts[round]; in des_setkey() 432 data->de_keysl[15 - round] = in des_setkey() 433 data->en_keysl[round] = comp_maskl[0][(t0 >> 21) & 0x7f] in des_setkey() 442 data->de_keysr[15 - round] = in des_setkey() 443 data->en_keysr[round] = comp_maskr[0][(t0 >> 21) & 0x7f] in des_setkey() 464 int round; in do_des() local 510 round = 16; in do_des() 511 while (round--) { in do_des()
|
/PHP-8.2/ext/standard/tests/strings/ |
H A D | ord_basic.phpt | 20 // Make sure all valid ascii chars round trip 23 exit("TEST FAILED: $i does not round trip\n");
|
H A D | str_rot13_basic.phpt | 25 echo "\nEnsure strings round trip\n"; 48 Ensure strings round trip
|
/PHP-8.2/ext/phar/tests/tar/ |
H A D | tar_003.phpt | 41 echo "second round\n"; 62 second round
|
/PHP-8.2/ext/standard/tests/misc/ |
H A D | time_sleep_until_basic.phpt | 23 // fix: round to nearest millisecond 28 $tmp = round($now, 3);
|
/PHP-8.2/ext/mysqli/tests/ |
H A D | mysqli_stmt_bind_result_format.phpt | 167 $expected[$k] = number_format(round($v), 0, '.', ','); 172 $expected[$k] = number_format(round($v), 0, '.', ','); 177 $expected[$k] = number_format(round($v), 0, '.', ','); 182 $expected[$k] = number_format(round($v), 0, '.', ','); 187 $expected[$k] = number_format(round($v), 0, '.', ','); 192 $expected[$k] = number_format(round($v), 0, '.', ','); 197 $expected[$k] = number_format(round($v), 0, '.', ','); 202 $expected[$k] = number_format(round($v), 0, '.', ',');
|
H A D | bug42378.phpt | 162 $expected[$k] = number_format(round($v), 0, '.', ','); 167 $expected[$k] = number_format(round($v), 0, '.', ','); 172 $expected[$k] = number_format(round($v), 0, '.', ','); 177 $expected[$k] = number_format(round($v), 0, '.', ',');
|
/PHP-8.2/ext/standard/tests/streams/ |
H A D | bug61371.phpt | 14 echo 'memory: '.round($current / 1024, 0)."kb\n";
|
H A D | bug61371-unix.phpt | 19 echo 'memory: '.round($current / 1024, 0)."kb\n";
|
/PHP-8.2/scripts/dev/ |
H A D | search_underscores.php | 77 printf("Errors: %5d (%.1f%%)\n", $err, round($err * 100 / $cnt, 1));
|
/PHP-8.2/ext/standard/tests/url/ |
H A D | base64_encode_basic_002.phpt | 2 Test base64_encode() function : basic functionality - check algorithm round trips
|