Home
last modified time | relevance | path

Searched refs:max_seconds (Results 1 – 2 of 2) sorted by relevance

/freebsd-13.1/contrib/llvm-project/libcxx/src/filesystem/
H A Dfilesystem_common.h286 static constexpr rep max_seconds =
291 fs_seconds(max_seconds))
318 return duration_cast<Years>(fs_seconds(max_seconds)) > Years(250) && in check_range()
321 return max_seconds >= numeric_limits<TimeT>::max() && in check_range()
335 static const rep max_seconds;
343 time_util_base<FileTimeT, TimeT, true>::max_seconds =
349 fs_seconds(max_seconds))
369 using Base::max_seconds;
391 return tm.tv_sec < max_seconds ||
392 (tm.tv_sec == max_seconds && tm.tv_nsec <= max_nsec);
/freebsd-13.1/tests/sys/netinet/libalias/
H A Dperf.c80 int max_seconds = 90, batch_size = 2000, in main() local
87 max_seconds = strtol(argv[1], &end, 10); in main()
88 if (max_seconds < 2 || end[0] != '\0') in main()
97 printf(" Maximum Runtime (max_seconds) = %d\n", max_seconds); in main()
139 timeout.tv_sec += max_seconds; in main()
148 printf("%6.1f ", max_seconds - timevaldiff(timeout, start)/1000000.0f); in main()