Home
last modified time | relevance | path

Searched refs:fp4 (Results 1 – 2 of 2) sorted by relevance

/PHP-8.1/ext/mysqlnd/
H A Dmysql_float_to_double.h37 static inline double mysql_float_to_double(float fp4, int decimals) { in mysql_float_to_double() argument
41 zend_gcvt(fp4, FLT_DIG, '.', 'e', num_buf); in mysql_float_to_double()
43 snprintf(num_buf, MAX_CHAR_BUF_LEN, "%.*F", decimals, fp4); in mysql_float_to_double()
/PHP-8.1/ext/mysqli/tests/
H A Dbug67839.phpt25 …if (!mysqli_query($link, "CREATE TABLE test(id INT PRIMARY KEY, fp4 FLOAT, fp8 DOUBLE) ENGINE = In…
31 if (!mysqli_query($link, "INSERT INTO test(id, fp4, fp8) VALUES (1, 9.9999, 9.9999)")) {
36 if (!($stmt = mysqli_prepare($link, "SELECT id, fp4, fp8 FROM test"))) {
42 $fp4 = null;
45 if (!mysqli_stmt_bind_result($stmt, $id, $fp4, $fp8)) {
61 print $id . ": " . $fp4 . ": " . $fp8 . "\n";

Completed in 7 milliseconds