Lines Matching refs:printf
11 int printf(char const *, ...);
15 printf("%s", (int) 123); in test()
16 printf("abc%0f", "testing testing 123"); in test()
17 printf("%u", (long) -12); in test()
18 printf("%p", 123); in test()
19 printf("%c\n", "x"); in test()
20 printf("%c\n", 1.23); in test()
23 printf("%+.2d", (unsigned long long) 123456); in test()
24 printf("%1d", (long double) 1.23); in test()
27 printf("%0+s", (unsigned) 31337); // 0 flag should stay in test()
28 printf("%#p", (void *) 0); in test()
29 printf("% +f", 1.23); // + flag should stay in test()
30 printf("%0-f", 1.23); // - flag should stay in test()
33 printf("%1$f:%2$.*3$f:%4$.*3$f\n", 1, 2, 3, 4); in test()
36 printf("%10.5d", 1l); // (bug 7394) in test()
37 printf("%.2c", 'a'); in test()
40 printf("%0-f", 1.23); in test()
43 printf("%hhs", "foo"); in test()
44 printf("%1$zp", (void *)0); in test()
48 printf("%X", val); in test()