Home
last modified time | relevance | path

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

/external/webkit/Source/WebKit/win/
DMarshallingHelpers.cpp37 static const double secondsPerDay = 60 * 60 * 24; variable
125 … windowsEpochAbsoluteTime = CFGregorianDateGetAbsoluteTime(windowsEpochDate, 0) / secondsPerDay; in windowsEpochAbsoluteTime()
146 return round((date + windowsEpochAbsoluteTime()) * secondsPerDay); in DATEToCFAbsoluteTime()
151 return (round(absoluteTime)/secondsPerDay - windowsEpochAbsoluteTime()); in CFAbsoluteTimeToDATE()
DWebHistory.cpp957 const double secondsPerDay = 60 * 60 * 24; in timeToDate() local
963 if (areEqualOrClose(time - timeInDays, secondsPerDay)) in timeToDate()
964 timeInDays += secondsPerDay; in timeToDate()
/external/webkit/Source/JavaScriptCore/wtf/
DDateMath.cpp125 static const double secondsPerDay = 24.0 * 60.0 * 60.0; variable
434 localTimeSeconds += secondsPerDay; in calculateDSTOffsetSimple()
452 diff += secondsPerDay; in calculateDSTOffsetSimple()
/external/webkit/Source/WebCore/history/
DHistoryItem.cpp319 static const double secondsPerDay = 60 * 60 * 24; in timeToDay() local
320 return static_cast<int>(ceil(time / secondsPerDay)); in timeToDay()