Searched refs:btmp (Results 1 – 2 of 2) sorted by relevance
159 const struct tm * btmp));1216 tmcomp(atmp, btmp) in tmcomp() argument1218 register const struct tm * const btmp;1222 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&1223 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&1224 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&1225 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&1226 (result = (atmp->tm_min - btmp->tm_min)) == 0)1227 result = atmp->tm_sec - btmp->tm_sec;
1014 mp_int qtmp, rtmp, btmp; in mp_div() local1029 DIGITS(&btmp) = 0; in mp_div()1062 MP_CHECKOK( mp_init_copy(&btmp, b) ); in mp_div()1063 MP_CHECKOK( s_mp_div(pR, &btmp, pQ) ); in mp_div()1084 mp_clear(&btmp); in mp_div()