Lines Matching defs:Seconds
122 time_t time; /* Seconds since the epoch */
603 ToSeconds(Hours, Minutes, Seconds, Meridian)
606 time_t Seconds;
609 if (Minutes < 0 || Minutes > 59 || Seconds < 0 || Seconds > 59)
615 return (Hours * 60L + Minutes) * 60L + Seconds;
619 return (Hours * 60L + Minutes) * 60L + Seconds;
623 return ((Hours + 12) * 60L + Minutes) * 60L + Seconds;
635 Convert(Month, Day, Year, Hours, Minutes, Seconds, Meridian, DSTmode)
641 time_t Seconds;
672 if ((tod = ToSeconds(Hours, Minutes, Seconds, Meridian)) < 0)