Home
last modified time | relevance | path

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

/third_party/musl/porting/liteos_a/kernel/src/time/
D__secs_to_tm.c14 int remdays, remsecs, remyears; in __secs_to_tm() local
26 remsecs = secs % 86400; in __secs_to_tm()
27 if (remsecs < 0) { in __secs_to_tm()
28 remsecs += 86400; in __secs_to_tm()
77 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
78 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
79 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/third_party/musl/porting/uniproton/kernel/src/time/
D__secs_to_tm.c14 int remdays, remsecs, remyears; in __secs_to_tm() local
26 remsecs = secs % 86400; in __secs_to_tm()
27 if (remsecs < 0) { in __secs_to_tm()
28 remsecs += 86400; in __secs_to_tm()
77 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
78 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
79 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/third_party/musl/src/time/
D__secs_to_tm.c14 int remdays, remsecs, remyears; in __secs_to_tm() local
26 remsecs = secs % 86400; in __secs_to_tm()
27 if (remsecs < 0) { in __secs_to_tm()
28 remsecs += 86400; in __secs_to_tm()
77 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
78 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
79 tm->tm_sec = remsecs % 60; in __secs_to_tm()
/third_party/musl/porting/liteos_m/kernel/src/time/
D__secs_to_tm.c14 int remdays, remsecs, remyears; in __secs_to_tm() local
26 remsecs = secs % 86400; in __secs_to_tm()
27 if (remsecs < 0) { in __secs_to_tm()
28 remsecs += 86400; in __secs_to_tm()
77 tm->tm_hour = remsecs / 3600; in __secs_to_tm()
78 tm->tm_min = remsecs / 60 % 60; in __secs_to_tm()
79 tm->tm_sec = remsecs % 60; in __secs_to_tm()