Home
last modified time | relevance | path

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

/titanic_44/usr/src/lib/libbc/libc/gen/common/
H A Dlocaltime.c159 const struct tm * btmp));
1216 tmcomp(atmp, btmp) in tmcomp() argument
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;
/titanic_44/usr/src/common/mpi/
H A Dmpi.c1014 mp_int qtmp, rtmp, btmp; in mp_div() local
1029 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()