HomeSort by: relevance | last modified time | path
    Searched defs:UTime (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/arch/ia64/stand/efi/libefi/
time.c 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
    [all...]
  /src/sys/arch/ia64/stand/ia64/ski/
time.c 113 time_t UTime;
133 UTime = 0;
135 UTime += (CumulativeDays[isleap(Year)][13] * SECSPERDAY);
139 // UTime should now be set to 00:00:00 on Jan 1 of the file's year.
143 UTime += (CumulativeDays[isleap(ETime->Year)][ETime->Month] * SECSPERDAY);
146 // UTime should now be set to 00:00:00 on the first of the file's month and year
150 UTime += (((ETime->Day > 0) ? ETime->Day-1:0) * SECSPERDAY);
155 UTime += (ETime->Hour * SECSPERHOUR);
160 UTime += (ETime->Minute * 60);
165 UTime += ETime->Second
    [all...]

Completed in 12 milliseconds