Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/StdLib/LibC/Time/
Dtzfile.h124 #define SECSPERMIN 60 macro
130 #define SECSPERHOUR (SECSPERMIN * MINSPERHOUR)
DTime.c148 tmp->tm_min = (int) (rem / SECSPERMIN); in timesub()
153 tmp->tm_sec = (int) (rem % SECSPERMIN) + hit; in timesub()
266 SECSPERMIN)) in time2sub()
306 if (yourtm.tm_sec >= 0 && yourtm.tm_sec < SECSPERMIN) in time2sub()
317 if (increment_overflow(&yourtm.tm_sec, 1 - SECSPERMIN)) in time2sub()
320 yourtm.tm_sec = SECSPERMIN - 1; in time2sub()
DZoneProc.c218 *secsp += num * SECSPERMIN; in getsecs()
222 strp = getnum(strp, &num, 0, SECSPERMIN); in getsecs()
/device/linaro/bootloader/edk2/CryptoPkg/Library/BaseCryptLib/SysCall/
DTimerWrapper.c25 #define SECSPERMIN (60) macro
137 GmTime->tm_sec = (int) (DayRemainder % SECSPERMIN); in gmtime()
138 GmTime->tm_min = (int) ((DayRemainder % SECSPERHOUR) / SECSPERMIN); in gmtime()