Searched refs:btmp (Results 1 – 2 of 2) sorted by relevance
35 BIGNUM *btmp; in rand_serial() local38 btmp = b; in rand_serial()40 btmp = BN_new(); in rand_serial()42 if (!btmp) in rand_serial()45 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0)) in rand_serial()47 if (ai && !BN_to_ASN1_INTEGER(btmp, ai)) in rand_serial()55 BN_free(btmp); in rand_serial()
231 tmcomp(const struct tm * const atmp, const struct tm * const btmp) in tmcomp() argument235 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 && in tmcomp()236 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in tmcomp()237 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp()238 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp()239 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp()240 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()