Home | History | Annotate | Download | only in tzcode

Lines Matching refs:atmp

188 static int      tmcomp(const struct tm * atmp,
1683 tmcomp(register const struct tm * const atmp,
1688 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1689 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1690 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1691 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1692 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1693 result = atmp->tm_sec - btmp->tm_sec;