/PHP-7.4/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.phpt | 18 LONG_MIN-1 ~== round(LONG_MIN - 0.6) 19 LONG_MIN ~== round(LONG_MIN - 0.4) 20 LONG_MIN ~== round(LONG_MIN + 0.4) 21 LONG_MIN+1 ~== round(LONG_MIN + 0.6) 26 LONG_MAX-1 ~== round(LONG_MAX - 0.6) 27 LONG_MAX ~== round(LONG_MAX - 0.4) 28 LONG_MAX ~== round(LONG_MAX + 0.4) 29 LONG_MAX+1 ~== round(LONG_MAX + 0.6)
|
H A D | round_basic.phpt | 2 Test round() - basic function test for round() 39 echo "round: $values[$i]\n"; 50 round: 123456789 63 round: 123.456789 76 round: -4.5679123 89 round: 12300 102 round: -4567 115 round: 2311527 128 round: 14680063 141 round: 1.234567 [all …]
|
H A D | round_variation1.phpt | 2 Test round() function : usage variations - different data types as $val argument 7 /* Prototype : float round ( float $val [, int $precision ] ) 13 echo "*** Testing round() : usage variations ***\n"; 81 // loop through each element of $inputs to check the behaviour of round() 85 var_dump(round($input, 14)); 92 *** Testing round() : usage variations ***
|
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-7.4/ext/hash/ |
H A D | hash_snefru.c | 24 #define round(L, C, N, SB) \ macro 70 round(B15, B00, B01, t0); in Snefru() 71 round(B00, B01, B02, t0); in Snefru() 72 round(B01, B02, B03, t1); in Snefru() 73 round(B02, B03, B04, t1); in Snefru() 74 round(B03, B04, B05, t0); in Snefru() 75 round(B04, B05, B06, t0); in Snefru() 76 round(B05, B06, B07, t1); in Snefru() 77 round(B06, B07, B08, t1); in Snefru() 78 round(B07, B08, B09, t0); in Snefru() [all …]
|
H A D | hash_gost.c | 28 #define round(tables, k1, k2) \ macro 39 round(tables, key[0], key[1]) \ 40 round(tables, key[2], key[3]) \ 41 round(tables, key[4], key[5]) \ 42 round(tables, key[6], key[7]) \ 43 round(tables, key[0], key[1]) \ 44 round(tables, key[2], key[3]) \ 45 round(tables, key[4], key[5]) \ 46 round(tables, key[6], key[7]) \ 47 round(tables, key[0], key[1]) \ [all …]
|
H A D | hash_tiger.c | 40 #define round(a,b,c,x,mul) \ macro 53 round(a,b,c,x0,mul) \ 54 round(b,c,a,x1,mul) \ 55 round(c,a,b,x2,mul) \ 56 round(a,b,c,x3,mul) \ 57 round(b,c,a,x4,mul) \ 58 round(c,a,b,x5,mul) \ 59 round(a,b,c,x6,mul) \ 60 round(b,c,a,x7,mul)
|
H A D | hash_sha3.c | 92 unsigned char round; in permute() local 94 for (round = 0; round < 24; ++round) { in permute()
|
/PHP-7.4/ext/standard/ |
H A D | crypt_freesec.c | 376 int shifts, round; in des_setkey() local 426 for (round = 0; round < 16; round++) { in des_setkey() 429 shifts += key_shifts[round]; in des_setkey() 434 data->de_keysl[15 - round] = in des_setkey() 435 data->en_keysl[round] = comp_maskl[0][(t0 >> 21) & 0x7f] in des_setkey() 444 data->de_keysr[15 - round] = in des_setkey() 445 data->en_keysr[round] = comp_maskr[0][(t0 >> 21) & 0x7f] in des_setkey() 466 int round; in do_des() local 512 round = 16; in do_des() 513 while (round--) { in do_des()
|
/PHP-7.4/ext/standard/tests/strings/ |
H A D | ord_basic.phpt | 25 // Make sure all valid ascii chars round trip 28 exit("TEST FAILED: $i does not round trip\n");
|
H A D | str_rot13_basic.phpt | 29 echo "\nEnsure strings round trip\n"; 53 Ensure strings round trip
|
/PHP-7.4/ext/phar/tests/tar/ |
H A D | tar_003.phpt | 41 echo "second round\n"; 63 second round
|
/PHP-7.4/ext/standard/tests/misc/ |
H A D | time_sleep_until_basic.phpt | 23 // fix: round to nearest millisecond 28 $tmp = round($now, 3);
|
/PHP-7.4/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-7.4/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-7.4/scripts/dev/ |
H A D | search_underscores.php | 79 printf("Errors: %5d (%.1f%%)\n", $err, round($err * 100 / $cnt, 1));
|
/PHP-7.4/ext/standard/tests/url/ |
H A D | base64_encode_basic_002.phpt | 2 Test base64_encode() function : basic functionality - check algorithm round trips
|