Home
last modified time | relevance | path

Searched refs:kMicrosecondsPerDay (Results 1 – 4 of 4) sorted by relevance

/external/libchrome/base/time/
Dtime.cc45 return static_cast<int>(delta_ / Time::kMicrosecondsPerDay); in InDays()
53 int result = delta_ / Time::kMicrosecondsPerDay; in InDaysFloored()
54 int64_t remainder = delta_ - (result * Time::kMicrosecondsPerDay); in InDaysFloored()
Dtime.h342 static const int64_t kMicrosecondsPerDay = variable
344 static const int64_t kMicrosecondsPerWeek = kMicrosecondsPerDay * 7;
716 : TimeDelta(days * Time::kMicrosecondsPerDay); in FromDays()
/external/v8/src/base/platform/
Dtime.h219 static constexpr int64_t kMicrosecondsPerDay = variable
221 static constexpr int64_t kMicrosecondsPerWeek = kMicrosecondsPerDay * 7;
Dtime.cc136 return TimeDelta(days * Time::kMicrosecondsPerDay); in FromDays()
170 return static_cast<int>(delta_ / Time::kMicrosecondsPerDay); in InDays()