Searched refs:btmp (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/lib/libbc/libc/gen/common/
H A Dlocaltime.c159 const struct tm * btmp));
1216 tmcomp(atmp, btmp)
1218 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;
/illumos-gate/usr/src/common/mpi/
H A Dmpi.c1014 mp_int qtmp, rtmp, btmp; local
1029 DIGITS(&btmp) = 0;
1062 MP_CHECKOK( mp_init_copy(&btmp, b) );
1063 MP_CHECKOK( s_mp_div(pR, &btmp, pQ) );
1084 mp_clear(&btmp);

Completed in 53 milliseconds