Lines Matching full:42
61 unsigned long val = 42; in test()
65 printf("%f", (size_t) 42); in test()
66 printf("%f", (intmax_t) 42); in test()
67 printf("%f", (uintmax_t) 42); in test()
68 printf("%f", (ptrdiff_t) 42); in test()
76 printf("%f", (my_size_type) 42); in test()
77 printf("%f", (my_intmax_type) 42); in test()
78 printf("%f", (my_uintmax_type) 42); in test()
79 printf("%f", (my_ptrdiff_type) 42); in test()
80 printf("%f", (my_int_type) 42); in test()
86 printf("%o", (long) 42); in test()
87 printf("%u", (long) 42); in test()
88 printf("%x", (long) 42); in test()
89 printf("%X", (long) 42); in test()
90 printf("%i", (unsigned long) 42); in test()
91 printf("%d", (unsigned long) 42); in test()
92 printf("%F", (long double) 42); in test()
93 printf("%e", (long double) 42); in test()
94 printf("%E", (long double) 42); in test()
95 printf("%g", (long double) 42); in test()
96 printf("%G", (long double) 42); in test()
97 printf("%a", (long double) 42); in test()
98 printf("%A", (long double) 42); in test()
204 // CHECK: printf("%zu", (size_t) 42);
205 // CHECK: printf("%jd", (intmax_t) 42);
206 // CHECK: printf("%ju", (uintmax_t) 42);
207 // CHECK: printf("%td", (ptrdiff_t) 42);
208 // CHECK: printf("%zu", (my_size_type) 42);
209 // CHECK: printf("%jd", (my_intmax_type) 42);
210 // CHECK: printf("%ju", (my_uintmax_type) 42);
211 // CHECK: printf("%td", (my_ptrdiff_type) 42);
212 // CHECK: printf("%d", (my_int_type) 42);
214 // CHECK: printf("%lo", (long) 42);
215 // CHECK: printf("%ld", (long) 42);
216 // CHECK: printf("%lx", (long) 42);
217 // CHECK: printf("%lX", (long) 42);
218 // CHECK: printf("%lu", (unsigned long) 42);
219 // CHECK: printf("%lu", (unsigned long) 42);
220 // CHECK: printf("%LF", (long double) 42);
221 // CHECK: printf("%Le", (long double) 42);
222 // CHECK: printf("%LE", (long double) 42);
223 // CHECK: printf("%Lg", (long double) 42);
224 // CHECK: printf("%LG", (long double) 42);
225 // CHECK: printf("%La", (long double) 42);
226 // CHECK: printf("%LA", (long double) 42);