Lines Matching defs:tow
353 short rpt_0x8F0B (TSIPPKT *rpt, unsigned short *event, double *tow,
1604 double tow;
1615 tow = bGetDouble(&buf[3]);
1617 if (tow == -1.0) {
1620 else if ((tow >= 604800.0) || (tow < 0.0)) {
1625 if (tow < 604799.9) tow = tow + .00000001;
1626 second = (unsigned int) fmod(tow, 60.);
1627 minute = (unsigned int) fmod(tow/60., 60.);
1628 hour = (unsigned int )fmod(tow / 3600., 24.);
2850 double *tow,
2872 *tow = bGetDouble(&buf[3]);
3230 double tow = 0;
3244 tow = time_of_week + .00000001;
3245 seconds = (float)fmod(tow, 60.);
3246 minutes = (short) fmod(tow/60., 60.);
3247 hours = (short)fmod(tow / 3600., 24.);
3248 days = (short)(tow / 86400.0);
4486 tow,
4500 &tow,
4529 show_time(tow), date, month, year);