Home
last modified time | relevance | path

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

/external/libcxx/src/experimental/filesystem/
Dfilesystem_time_helper.h33 static constexpr auto max_seconds =
38 seconds(max_seconds))
59 static const long long max_seconds;
66 const long long fs_time_util_base<FileTimeT, true>::max_seconds =
72 seconds(max_seconds))
90 using Base::max_seconds;
106 return (tm.tv_sec < max_seconds) ||
107 (tm.tv_sec == max_seconds && tm.tv_nsec <= max_nsec);
/external/libcxx/test/libcxx/experimental/filesystem/
Dconvert_file_time.sh.cpp59 using Base::max_seconds;
67 static_assert(is_representable(TimeSpecT{max_seconds, max_nsec}), ""); in test_timespec()
68 static_assert(!is_representable(TimeSpecT{max_seconds + 1, 0}), ""); in test_timespec()
69 static_assert(!is_representable(TimeSpecT{max_seconds, max_nsec + 1}), ""); in test_timespec()
91 static_assert(convert_timespec(TimeSpecT{max_seconds, max_nsec}) == in test_convert_timespec()
94 static_assert(convert_timespec(TimeSpecT{max_seconds, max_nsec - 1}) < in test_convert_timespec()
97 static_assert(convert_timespec(TimeSpecT{max_seconds - 1, 999999999}) < in test_convert_timespec()
129 using Base::max_seconds;
/external/libchrome/base/time/
Dtime_posix.cc316 const int64_t max_seconds = (sizeof(SysTime) < sizeof(int64_t)) in FromExploded() local
322 milliseconds = max_seconds * kMillisecondsPerSecond; in FromExploded()