Home | History | Annotate | Download | only in libcutils

Lines Matching refs:btmp

210 				const struct tm * btmp));
1644 tmcomp(atmp, btmp)
1646 register const struct tm * const btmp;
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;