• Home
  • Raw
  • Download

Lines Matching refs:curl_msnprintf

1416   curl_msnprintf(buf, sizeof(buf), "%0*d%s", 2, 9, "foo");  in test_string_formatting()
1419 curl_msnprintf(buf, sizeof(buf), "%*.*s", 5, 2, "foo"); in test_string_formatting()
1422 curl_msnprintf(buf, sizeof(buf), "%*.*s", 2, 5, "foo"); in test_string_formatting()
1425 curl_msnprintf(buf, sizeof(buf), "%*.*s", 0, 10, "foo"); in test_string_formatting()
1428 curl_msnprintf(buf, sizeof(buf), "%-10s", "foo"); in test_string_formatting()
1431 curl_msnprintf(buf, sizeof(buf), "%10s", "foo"); in test_string_formatting()
1434 curl_msnprintf(buf, sizeof(buf), "%*.*s", -10, -10, "foo"); in test_string_formatting()
1452 rc = curl_msnprintf(buf, sizeof(buf), in test_weird_arguments()
1504 rc = curl_msnprintf(buf, sizeof(buf), in test_weird_arguments()
1554 curl_msnprintf(buf, sizeof(buf), "%f", 9.0); in test_float_formatting()
1557 curl_msnprintf(buf, sizeof(buf), "%.1f", 9.1); in test_float_formatting()
1560 curl_msnprintf(buf, sizeof(buf), "%.2f", 9.1); in test_float_formatting()
1563 curl_msnprintf(buf, sizeof(buf), "%.0f", 9.1); in test_float_formatting()
1566 curl_msnprintf(buf, sizeof(buf), "%0f", 9.1); in test_float_formatting()
1569 curl_msnprintf(buf, sizeof(buf), "%10f", 9.1); in test_float_formatting()
1572 curl_msnprintf(buf, sizeof(buf), "%10.3f", 9.1); in test_float_formatting()
1575 curl_msnprintf(buf, sizeof(buf), "%-10.3f", 9.1); in test_float_formatting()
1578 curl_msnprintf(buf, sizeof(buf), "%-10.3f", 9.123456); in test_float_formatting()
1581 curl_msnprintf(buf, sizeof(buf), "%.-2f", 9.1); in test_float_formatting()
1584 curl_msnprintf(buf, sizeof(buf), "%*f", 10, 9.1); in test_float_formatting()
1587 curl_msnprintf(buf, sizeof(buf), "%*f", 3, 9.1); in test_float_formatting()
1590 curl_msnprintf(buf, sizeof(buf), "%*f", 6, 9.2987654); in test_float_formatting()
1593 curl_msnprintf(buf, sizeof(buf), "%*f", 6, 9.298765); in test_float_formatting()
1596 curl_msnprintf(buf, sizeof(buf), "%*f", 6, 9.29876); in test_float_formatting()
1599 curl_msnprintf(buf, sizeof(buf), "%.*f", 6, 9.2987654); in test_float_formatting()
1601 curl_msnprintf(buf, sizeof(buf), "%.*f", 5, 9.2987654); in test_float_formatting()
1603 curl_msnprintf(buf, sizeof(buf), "%.*f", 4, 9.2987654); in test_float_formatting()
1605 curl_msnprintf(buf, sizeof(buf), "%.*f", 3, 9.2987654); in test_float_formatting()
1607 curl_msnprintf(buf, sizeof(buf), "%.*f", 2, 9.2987654); in test_float_formatting()
1609 curl_msnprintf(buf, sizeof(buf), "%.*f", 1, 9.2987654); in test_float_formatting()
1611 curl_msnprintf(buf, sizeof(buf), "%.*f", 0, 9.2987654); in test_float_formatting()
1617 curl_msnprintf(buf, sizeof(buf), "%.*f", (1<<30), 9.2987654); in test_float_formatting()
1620 curl_msnprintf(buf, sizeof(buf), "%10000.10000f", 9.2987654); in test_float_formatting()
1623 curl_msnprintf(buf, sizeof(buf), "%240.10000f", in test_float_formatting()
1628 curl_msnprintf(buf, sizeof(buf), "%*f", INT_MIN, 9.1); in test_float_formatting()
1633 curl_msnprintf(buf, sizeof(buf), "%*f", (1<<30), 9.1); in test_float_formatting()
1635 curl_msnprintf(buf, sizeof(buf), "%100000f", 9.1); in test_float_formatting()
1638 curl_msnprintf(buf, sizeof(buf), "%f", MAXIMIZE); in test_float_formatting()
1641 curl_msnprintf(buf, 2, "%f", MAXIMIZE); in test_float_formatting()
1643 curl_msnprintf(buf, 3, "%f", MAXIMIZE); in test_float_formatting()
1645 curl_msnprintf(buf, 4, "%f", MAXIMIZE); in test_float_formatting()
1647 curl_msnprintf(buf, 5, "%f", MAXIMIZE); in test_float_formatting()
1649 curl_msnprintf(buf, 6, "%f", MAXIMIZE); in test_float_formatting()