Lines Matching defs:UTime
102 time_t UTime;
122 UTime = 0;
124 UTime += (CumulativeDays[isleap(Year)][13] * SECSPERDAY);
128 // UTime should now be set to 00:00:00 on Jan 1 of the file's year.
132 UTime += (CumulativeDays[isleap(ETime->Year)][ETime->Month] * SECSPERDAY);
135 // UTime should now be set to 00:00:00 on the first of the file's month and year
139 UTime += (((ETime->Day > 0) ? ETime->Day-1:0) * SECSPERDAY);
144 UTime += (ETime->Hour * SECSPERHOUR);
149 UTime += (ETime->Minute * 60);
154 UTime += ETime->Second;
164 UTime += (ETime->TimeZone * 60);
167 return UTime;