Home
last modified time | relevance | path

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

/device/linaro/bootloader/arm-trusted-firmware/tools/cert_create/src/
Dcert.c35 BIGNUM *btmp; in rand_serial() local
38 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()
/device/linaro/bootloader/edk2/StdLib/LibC/Time/
DTime.c231 tmcomp(const struct tm * const atmp, const struct tm * const btmp) in tmcomp() argument
235 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()