Searched refs:kMsPerDay (Results 1 – 2 of 2) sorted by relevance
20 static const int64_t kMsPerDay = kSecPerDay * 1000; variable21 static const int64_t kMsPerMonth = kMsPerDay * 30;54 if (time_ms < 0) time_ms -= (kMsPerDay - 1); in DaysFromTime()55 return static_cast<int>(time_ms / kMsPerDay); in DaysFromTime()61 return static_cast<int>(time_ms - days * kMsPerDay); in TimeInDay()124 int time_within_day_ms = static_cast<int>(time_ms - days * kMsPerDay); in EquivalentTime()128 return static_cast<int64_t>(new_days) * kMsPerDay + time_within_day_ms; in EquivalentTime()
467 const double kMsPerDay = 86400000.0; variable477 return time + day * kMsPerDay; in MakeDate()