Lines Matching defs:Seconds
28 time_t time; /* Seconds since the epoch */
484 ToSeconds(Hours, Minutes, Seconds, Meridian)
487 time_t Seconds;
490 if (Minutes < 0 || Minutes > 59 || Seconds < 0 || Seconds > 59)
496 return (Hours * 60L + Minutes) * 60L + Seconds;
501 return (Hours * 60L + Minutes) * 60L + Seconds;
503 return Minutes * 60L + Seconds;
508 return ((Hours + 12) * 60L + Minutes) * 60L + Seconds;
510 return (720L + Minutes) * 60L + Seconds;
518 Convert(Month, Day, Year, Hours, Minutes, Seconds, Meridian, DSTmode)
524 time_t Seconds;
553 if ((tod = ToSeconds(Hours, Minutes, Seconds, Meridian)) < 0)