Home | History | Annotate | Download | only in libcutils

Lines Matching full:atmp

209 static int		tmcomp P((const struct tm * atmp,
1644 tmcomp(atmp, btmp)
1645 register const struct tm * const atmp;
1650 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1651 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1652 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1653 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1654 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1655 result = atmp->tm_sec - btmp->tm_sec;