Home
last modified time | relevance | path

Searched refs:atmp (Results 1 – 1 of 1) sorted by relevance

/bionic/libc/tzcode/
Dlocaltime.c1995 tmcomp(register const struct tm *const atmp, in tmcomp() argument
2000 if (atmp->tm_year != btmp->tm_year) in tmcomp()
2001 return atmp->tm_year < btmp->tm_year ? -1 : 1; in tmcomp()
2002 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in tmcomp()
2003 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp()
2004 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp()
2005 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp()
2006 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()