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

/freebsd-13-stable/contrib/ntp/libntp/
H A Dmktime.c151 register struct tm * btmp
158 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
159 (result = (atmp->tm_mon - btmp->tm_mon)) == 0)
160 result = (atmp->tm_mday - btmp->tm_mday);
167 if(atmp->tm_isdst == 1 && !btmp->tm_isdst)
168 btmp = mkdst(btmp);
169 else if(btmp->tm_isdst == 1 && !atmp->tm_isdst)
174 if ((result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
175 (result = (atmp->tm_min - btmp
[all...]
/freebsd-13-stable/crypto/openssl/crypto/conf/
H A Dconf_lib.c71 BIO *btmp; local
73 if ((btmp = BIO_new_fp(fp, BIO_NOCLOSE)) == NULL) {
77 ltmp = CONF_load_bio(conf, btmp, eline);
78 BIO_free(btmp);
149 BIO *btmp; local
152 if ((btmp = BIO_new_fp(out, BIO_NOCLOSE)) == NULL) {
156 ret = CONF_dump_bio(conf, btmp);
157 BIO_free(btmp);
220 BIO *btmp; local
222 if ((btmp
329 BIO *btmp; local
[all...]
H A Dconf_def.c190 char btmp[DECIMAL_SIZE(eline) + 1]; local
475 BIO_snprintf(btmp, sizeof(btmp), "%ld", eline);
476 ERR_add_error_data(2, "line ", btmp);
/freebsd-13-stable/crypto/openssl/crypto/pkcs7/
H A Dpk7_doit.c57 BIO *btmp; local
59 if ((btmp = BIO_new(BIO_f_md())) == NULL) {
70 BIO_set_md(btmp, md);
72 *pbio = btmp;
73 else if (!BIO_push(*pbio, btmp)) {
77 btmp = NULL;
82 BIO_free(btmp);
199 BIO *out = NULL, *btmp = NULL; local
278 if ((btmp = BIO_new(BIO_f_cipher())) == NULL) {
282 BIO_get_cipher_ctx(btmp,
362 BIO *out = NULL, *btmp = NULL, *etmp = NULL, *bio = NULL; local
649 BIO *btmp; local
947 BIO *btmp; local
[all...]
/freebsd-13-stable/crypto/openssl/crypto/x509v3/
H A Dv3_utl.c239 const char *btmp; local
241 if ((btmp = value->value) == NULL)
243 if (strcmp(btmp, "TRUE") == 0
244 || strcmp(btmp, "true") == 0
245 || strcmp(btmp, "Y") == 0
246 || strcmp(btmp, "y") == 0
247 || strcmp(btmp, "YES") == 0
248 || strcmp(btmp, "yes") == 0) {
252 if (strcmp(btmp, "FALSE") == 0
253 || strcmp(btmp, "fals
[all...]
/freebsd-13-stable/crypto/openssl/crypto/asn1/
H A Da_strex.c573 BIO *btmp; local
575 btmp = BIO_new_fp(fp, BIO_NOCLOSE);
576 if (!btmp)
578 ret = X509_NAME_print(btmp, nm, indent);
579 BIO_free(btmp);
/freebsd-13-stable/usr.sbin/watch/
H A Dwatch.c96 char btmp[1024]; local
101 strftime(btmp, 1024, "Time: %d %b %H:%M", localtime(&t));
102 printf("%s\n", btmp);
/freebsd-13-stable/crypto/openssl/engines/
H A De_capi.c707 unsigned char *btmp; local
719 btmp = (unsigned char *)(dp + 1);
736 if (!lend_tobn(p, btmp, dsa_plen))
738 btmp += dsa_plen;
739 if (!lend_tobn(q, btmp, 20))
741 btmp += 20;
742 if (!lend_tobn(g, btmp, dsa_plen))
744 btmp += dsa_plen;
745 if (!lend_tobn(pub_key, btmp, dsa_plen))
747 btmp
[all...]
/freebsd-13-stable/contrib/tzcode/stdtime/
H A Dlocaltime.c212 const struct tm * btmp);
1805 tmcomp(atmp, btmp)
1807 const struct tm * const btmp;
1811 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1812 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1813 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1814 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1815 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1816 result = atmp->tm_sec - btmp->tm_sec;
/freebsd-13-stable/crypto/openssl/apps/
H A Dapps.c412 BIO *btmp; local
423 btmp = BIO_new(BIO_f_buffer());
424 pwdbio = BIO_push(btmp, pwdbio);
1513 BIGNUM *btmp; local
1516 btmp = b == NULL ? BN_new() : b;
1517 if (btmp == NULL)
1520 if (!BN_rand(btmp, SERIAL_RAND_BITS, BN_RAND_TOP_ANY, BN_RAND_BOTTOM_ANY))
1522 if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1529 if (btmp != b)
1530 BN_free(btmp);
[all...]

Completed in 215 milliseconds