Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dtime_utils.h130 static constexpr rep max_seconds = duration_cast<fs_seconds>(FileTimeT::duration::max()).count();
133 duration_cast<fs_nanoseconds>(FileTimeT::duration::max() - fs_seconds(max_seconds)).count();
151 return duration_cast<Years>(fs_seconds(max_seconds)) > Years(250) && in get_min_nsecs()
154 return max_seconds >= numeric_limits<TimeT>::max() && min_seconds <= numeric_limits<TimeT>::min(); in get_min_nsecs()
169 static const rep max_seconds; in check_range()
176 const typename FileTimeT::rep time_util_base<FileTimeT, TimeT, true>::max_seconds =
181 duration_cast<fs_nanoseconds>(FileTimeT::duration::max() - fs_seconds(max_seconds)).count();
195 using Base::max_seconds;
216 return tm.tv_sec < max_seconds || (tm.tv_sec == max_seconds
[all...]
/freebsd/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()