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

/freebsd-11-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-11-stable/crypto/openssl/crypto/conf/
H A Dconf_lib.c119 BIO *btmp; local
121 if (!(btmp = BIO_new_fp(fp, BIO_NOCLOSE))) {
125 ltmp = CONF_load_bio(conf, btmp, eline);
126 BIO_free(btmp);
200 BIO *btmp; local
203 if (!(btmp = BIO_new_fp(out, BIO_NOCLOSE))) {
207 ret = CONF_dump_bio(conf, btmp);
208 BIO_free(btmp);
271 BIO *btmp; local
273 if (!(btmp
355 BIO *btmp; local
[all...]
H A Dconf_def.c222 char btmp[DECIMAL_SIZE(eline) + 1]; local
426 BIO_snprintf(btmp, sizeof(btmp), "%ld", eline);
427 ERR_add_error_data(2, "line ", btmp);
/freebsd-11-stable/crypto/openssl/crypto/pkcs7/
H A Dpk7_doit.c106 BIO *btmp; local
108 if ((btmp = BIO_new(BIO_f_md())) == NULL) {
119 BIO_set_md(btmp, md);
121 *pbio = btmp;
122 else if (!BIO_push(*pbio, btmp)) {
126 btmp = NULL;
131 if (btmp)
132 BIO_free(btmp);
258 BIO *out = NULL, *btmp = NULL; local
337 if ((btmp
425 BIO *out = NULL, *btmp = NULL, *etmp = NULL, *bio = NULL; local
756 BIO *btmp; local
1043 BIO *btmp; local
[all...]
/freebsd-11-stable/crypto/openssl/crypto/x509v3/
H A Dv3_utl.c240 char *btmp; local
241 if (!(btmp = value->value))
243 if (!strcmp(btmp, "TRUE") || !strcmp(btmp, "true")
244 || !strcmp(btmp, "Y") || !strcmp(btmp, "y")
245 || !strcmp(btmp, "YES") || !strcmp(btmp, "yes")) {
248 } else if (!strcmp(btmp, "FALSE") || !strcmp(btmp, "fals
[all...]
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Da_strex.c617 BIO *btmp; local
619 btmp = BIO_new_fp(fp, BIO_NOCLOSE);
620 if (!btmp)
622 ret = X509_NAME_print(btmp, nm, indent);
623 BIO_free(btmp);
/freebsd-11-stable/usr.sbin/watch/
H A Dwatch.c98 char btmp[1024]; local
103 strftime(btmp, 1024, "Time: %d %b %H:%M", localtime(&t));
104 printf("%s\n", btmp);
/freebsd-11-stable/crypto/openssl/engines/
H A De_capi.c698 unsigned char *btmp; local
709 btmp = (unsigned char *)(dp + 1);
719 if (!lend_tobn(dkey->p, btmp, dsa_plen))
721 btmp += dsa_plen;
722 if (!lend_tobn(dkey->q, btmp, 20))
724 btmp += 20;
725 if (!lend_tobn(dkey->g, btmp, dsa_plen))
727 btmp += dsa_plen;
728 if (!lend_tobn(dkey->pub_key, btmp, dsa_plen))
730 btmp
[all...]
/freebsd-11-stable/contrib/tzcode/stdtime/
H A Dlocaltime.c212 const struct tm * btmp);
1817 tmcomp(atmp, btmp)
1819 const struct tm * const btmp;
1823 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1824 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1825 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1826 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1827 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1828 result = atmp->tm_sec - btmp->tm_sec;
/freebsd-11-stable/crypto/openssl/apps/
H A Dapps.c688 BIO *btmp; local
699 btmp = BIO_new(BIO_f_buffer());
700 pwdbio = BIO_push(btmp, pwdbio);
1834 BIGNUM *btmp; local
1837 btmp = b;
1839 btmp = BN_new();
1841 if (!btmp)
1844 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0))
1846 if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1854 BN_free(btmp);
[all...]

Completed in 118 milliseconds