HomeSort by relevance Sort by last modified time
    Searched refs:kMsPerDay (Results 1 - 2 of 2) sorted by null

  /external/v8/src/
date.h 43 static const int64_t kMsPerDay = kSecPerDay * 1000;
57 kMaxTimeInMs + 10 * kMsPerDay;
76 // Computes floor(time_ms / kMsPerDay).
78 if (time_ms < 0) time_ms -= (kMsPerDay - 1);
79 return static_cast<int>(time_ms / kMsPerDay);
83 // Computes modulo(time_ms, kMsPerDay) given that
84 // days = floor(time_ms / kMsPerDay).
86 return static_cast<int>(time_ms - days * kMsPerDay);
148 int time_within_day_ms = static_cast<int>(time_ms - days * kMsPerDay);
152 return static_cast<int64_t>(new_days) * kMsPerDay + time_within_day_ms
    [all...]
  /external/v8/test/cctest/
test-date.cc 107 return (result + day - 1) * DateCache::kMsPerDay;
152 time -= DateCache::kMsPerDay) {

Completed in 123 milliseconds