Lines Matching refs:LongLong
272 if (sizeof(fmt::LongLong) != sizeof(int)) { in TEST()
273 fmt::LongLong prec = static_cast<fmt::LongLong>(INT_MIN) - 1; in TEST()
291 SPECIALIZE_MAKE_SIGNED(fmt::ULongLong, fmt::LongLong);
296 fmt::LongLong signed_value = 0; in TestLength()
311 signed_value = static_cast<fmt::LongLong>(value); in TestLength()
342 TestLength<T>(length_spec, fmt::LongLong(min) - 1); in TestLength()
343 fmt::ULongLong long_long_max = std::numeric_limits<fmt::LongLong>::max(); in TestLength()
345 TestLength<T>(length_spec, fmt::LongLong(max) + 1); in TestLength()
352 TestLength<T>(length_spec, std::numeric_limits<fmt::LongLong>::min()); in TestLength()
353 TestLength<T>(length_spec, std::numeric_limits<fmt::LongLong>::max()); in TestLength()
366 TestLength<fmt::LongLong>("ll"); in TEST()
391 TEST(PrintfTest, LongLong) { in TEST() argument
394 fmt::LongLong max = std::numeric_limits<fmt::LongLong>::max(); in TEST()