Home
last modified time | relevance | path

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

/linux-2.4.37.9/arch/ppc/kernel/
Dtime.c370 register long hms, day, gday; in to_tm() local
373 hms = tim % SECDAY; in to_tm()
376 tm->tm_hour = hms / 3600; in to_tm()
377 tm->tm_min = (hms % 3600) / 60; in to_tm()
378 tm->tm_sec = (hms % 3600) % 60; in to_tm()
/linux-2.4.37.9/arch/mips64/kernel/
Dtime.c727 long hms, day, gday; in to_tm() local
731 hms = tim % SECDAY; in to_tm()
734 tm->tm_hour = hms / 3600; in to_tm()
735 tm->tm_min = (hms % 3600) / 60; in to_tm()
736 tm->tm_sec = (hms % 3600) % 60; in to_tm()
/linux-2.4.37.9/arch/mips/kernel/
Dtime.c727 long hms, day, gday; in to_tm() local
731 hms = tim % SECDAY; in to_tm()
734 tm->tm_hour = hms / 3600; in to_tm()
735 tm->tm_min = (hms % 3600) / 60; in to_tm()
736 tm->tm_sec = (hms % 3600) % 60; in to_tm()
/linux-2.4.37.9/arch/ppc64/kernel/
Dtime.c708 register long hms, day; in to_tm() local
711 hms = tim % SECDAY; in to_tm()
714 tm->tm_hour = hms / 3600; in to_tm()
715 tm->tm_min = (hms % 3600) / 60; in to_tm()
716 tm->tm_sec = (hms % 3600) % 60; in to_tm()