Lines Matching defs:uim
578 const uintmax_t uim = 42;
579 const std::uintmax_t suim = uim;
580 printf("Integers %jd and %jd from uintmax_t\n", uim, suim);
582 // CHECK-FIXES-NOTSTRICT: std::println("Integers {} and {} from uintmax_t", uim, suim);
583 // CHECK-FIXES-STRICT: std::println("Integers {} and {} from uintmax_t", static_cast<intmax_t>(uim), static_cast<std::intmax_t>(suim));
585 printf("Integer %ji from intmax_t\n", uim);
587 // CHECK-FIXES-NOTSTRICT: std::println("Integer {} from intmax_t", uim);
588 // CHECK-FIXES-STRICT: std::println("Integer {} from intmax_t", static_cast<intmax_t>(uim));
728 const uintmax_t uim = 42U;
729 const std::uintmax_t suim = uim;
730 printf("Unsigned integers %ju and %ju from uintmax_t\n", uim, suim);
732 // CHECK-FIXES: std::println("Unsigned integers {} and {} from uintmax_t", uim, suim);