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

  /external/v8/src/
date.h 20 static const int64_t kMsPerDay = kSecPerDay * 1000;
21 static const int64_t kMsPerMonth = kMsPerDay * 30;
56 // Computes floor(time_ms / kMsPerDay).
58 if (time_ms < 0) time_ms -= (kMsPerDay - 1);
59 return static_cast<int>(time_ms / kMsPerDay);
63 // Computes modulo(time_ms, kMsPerDay) given that
64 // days = floor(time_ms / kMsPerDay).
66 return static_cast<int>(time_ms - days * kMsPerDay);
166 int time_within_day_ms = static_cast<int>(time_ms - days * kMsPerDay);
170 return static_cast<int64_t>(new_days) * kMsPerDay + time_within_day_ms
    [all...]
  /external/v8/src/builtins/
builtins-date.cc 29 const double kMsPerDay = 86400000.0;
39 return time + day * kMsPerDay;
    [all...]

Completed in 53 milliseconds