Home | History | Annotate | Download | only in tzcode

Lines Matching refs:btmp

189                 const struct tm * btmp);
1698 register const struct tm * const btmp)
1702 if (atmp->tm_year != btmp->tm_year)
1703 return atmp->tm_year < btmp->tm_year ? -1 : 1;
1704 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1705 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1706 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1707 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1708 result = atmp->tm_sec - btmp->tm_sec;