Lines Matching refs:curl_msnprintf

1162   curl_msnprintf(buf, sizeof(buf), "%0*d%s", 2, 9, "foo");  in test_string_formatting()
1165 curl_msnprintf(buf, sizeof(buf), "%*.*s", 5, 2, "foo"); in test_string_formatting()
1168 curl_msnprintf(buf, sizeof(buf), "%*.*s", 2, 5, "foo"); in test_string_formatting()
1171 curl_msnprintf(buf, sizeof(buf), "%*.*s", 0, 10, "foo"); in test_string_formatting()
1174 curl_msnprintf(buf, sizeof(buf), "%-10s", "foo"); in test_string_formatting()
1177 curl_msnprintf(buf, sizeof(buf), "%10s", "foo"); in test_string_formatting()
1180 curl_msnprintf(buf, sizeof(buf), "%*.*s", -10, -10, "foo"); in test_string_formatting()
1196 curl_msnprintf(buf, sizeof(buf), "%3$d %2$d %1$d", 500, 501, 502); in test_pos_arguments()
1199 curl_msnprintf(buf, sizeof(buf), "%3$d %1$d %2$d", 500, 501, 502); in test_pos_arguments()
1204 curl_msnprintf(buf, sizeof(buf), "%3$d %d %2$d", 500, 501, 502); in test_pos_arguments()
1217 rc = curl_msnprintf(buf, sizeof(buf), "%-20d%% right? %%", 500); in test_weird_arguments()
1221 rc = curl_msnprintf(buf, sizeof(buf), "%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%" in test_weird_arguments()
1228 rc = curl_msnprintf(buf, sizeof(buf), "%2 AA %d %K", 500, 501, 502); in test_weird_arguments()
1231 rc = curl_msnprintf(buf, sizeof(buf), "%2 %d %K", 500, 501, 502); in test_weird_arguments()
1235 rc = curl_msnprintf(buf, sizeof(buf), in test_weird_arguments()
1287 rc = curl_msnprintf(buf, sizeof(buf), in test_weird_arguments()
1336 curl_msnprintf(buf, sizeof(buf), "%f", 9.0); in test_float_formatting()
1339 curl_msnprintf(buf, sizeof(buf), "%.1f", 9.1); in test_float_formatting()
1342 curl_msnprintf(buf, sizeof(buf), "%.2f", 9.1); in test_float_formatting()
1345 curl_msnprintf(buf, sizeof(buf), "%.0f", 9.1); in test_float_formatting()
1348 curl_msnprintf(buf, sizeof(buf), "%0f", 9.1); in test_float_formatting()
1351 curl_msnprintf(buf, sizeof(buf), "%10f", 9.1); in test_float_formatting()
1354 curl_msnprintf(buf, sizeof(buf), "%10.3f", 9.1); in test_float_formatting()
1357 curl_msnprintf(buf, sizeof(buf), "%-10.3f", 9.1); in test_float_formatting()
1360 curl_msnprintf(buf, sizeof(buf), "%-10.3f", 9.123456); in test_float_formatting()
1363 curl_msnprintf(buf, sizeof(buf), "%.-2f", 9.1); in test_float_formatting()
1366 curl_msnprintf(buf, sizeof(buf), "%*f", 10, 9.1); in test_float_formatting()
1369 curl_msnprintf(buf, sizeof(buf), "%*f", 3, 9.1); in test_float_formatting()
1372 curl_msnprintf(buf, sizeof(buf), "%*f", 6, 9.2987654); in test_float_formatting()
1375 curl_msnprintf(buf, sizeof(buf), "%*f", 6, 9.298765); in test_float_formatting()
1378 curl_msnprintf(buf, sizeof(buf), "%*f", 6, 9.29876); in test_float_formatting()
1381 curl_msnprintf(buf, sizeof(buf), "%.*f", 6, 9.2987654); in test_float_formatting()
1383 curl_msnprintf(buf, sizeof(buf), "%.*f", 5, 9.2987654); in test_float_formatting()
1385 curl_msnprintf(buf, sizeof(buf), "%.*f", 4, 9.2987654); in test_float_formatting()
1387 curl_msnprintf(buf, sizeof(buf), "%.*f", 3, 9.2987654); in test_float_formatting()
1389 curl_msnprintf(buf, sizeof(buf), "%.*f", 2, 9.2987654); in test_float_formatting()
1391 curl_msnprintf(buf, sizeof(buf), "%.*f", 1, 9.2987654); in test_float_formatting()
1393 curl_msnprintf(buf, sizeof(buf), "%.*f", 0, 9.2987654); in test_float_formatting()
1399 curl_msnprintf(buf, sizeof(buf), "%.*f", (1 << 30), 9.2987654); in test_float_formatting()
1402 curl_msnprintf(buf, sizeof(buf), "%10000.10000f", 9.2987654); in test_float_formatting()
1405 curl_msnprintf(buf, sizeof(buf), "%240.10000f", in test_float_formatting()
1411 curl_msnprintf(buf, sizeof(buf), "%*f", INT_MIN, 9.1); in test_float_formatting()
1416 curl_msnprintf(buf, sizeof(buf), "%*f", (1 << 30), 9.1); in test_float_formatting()
1418 curl_msnprintf(buf, sizeof(buf), "%100000f", 9.1); in test_float_formatting()
1421 curl_msnprintf(buf, sizeof(buf), "%f", MAXIMIZE); in test_float_formatting()
1424 curl_msnprintf(buf, 2, "%f", MAXIMIZE); in test_float_formatting()
1426 curl_msnprintf(buf, 3, "%f", MAXIMIZE); in test_float_formatting()
1428 curl_msnprintf(buf, 4, "%f", MAXIMIZE); in test_float_formatting()
1430 curl_msnprintf(buf, 5, "%f", MAXIMIZE); in test_float_formatting()
1432 curl_msnprintf(buf, 6, "%f", MAXIMIZE); in test_float_formatting()
1449 rc = curl_msnprintf(buf, 100, "%d", 9999); in test_return_codes()
1453 rc = curl_msnprintf(buf, 100, "%d", 99999); in test_return_codes()
1458 rc = curl_msnprintf(buf, 5, "%d", 99999); in test_return_codes()
1463 rc = curl_msnprintf(buf, 5, "%s", "helloooooooo"); in test_return_codes()
1468 rc = curl_msnprintf(buf, 6, "%s", "helloooooooo"); in test_return_codes()