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

/freebsd-9.3-release/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-9.3-release/crypto/openssl/crypto/conf/
H A Dconf_lib.c117 BIO *btmp; local
119 if (!(btmp = BIO_new_fp(fp, BIO_NOCLOSE))) {
123 ltmp = CONF_load_bio(conf, btmp, eline);
124 BIO_free(btmp);
194 BIO *btmp; local
197 if (!(btmp = BIO_new_fp(out, BIO_NOCLOSE))) {
201 ret = CONF_dump_bio(conf, btmp);
202 BIO_free(btmp);
265 BIO *btmp; local
267 if (!(btmp
349 BIO *btmp; local
[all...]
H A Dconf_def.c216 char btmp[DECIMAL_SIZE(eline) + 1]; local
428 BIO_snprintf(btmp, sizeof btmp, "%ld", eline);
429 ERR_add_error_data(2, "line ", btmp);
/freebsd-9.3-release/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);
140 BIO *out = NULL, *btmp = NULL; local
220 if ((btmp
335 BIO *out = NULL, *btmp = NULL, *etmp = NULL, *bio = NULL; local
644 BIO *btmp; local
924 BIO *btmp; local
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/x509v3/
H A Dv3_utl.c239 char *btmp; local
240 if (!(btmp = value->value))
242 if (!strcmp(btmp, "TRUE") || !strcmp(btmp, "true")
243 || !strcmp(btmp, "Y") || !strcmp(btmp, "y")
244 || !strcmp(btmp, "YES") || !strcmp(btmp, "yes")) {
247 } else if (!strcmp(btmp, "FALSE") || !strcmp(btmp, "fals
[all...]
/freebsd-9.3-release/crypto/openssl/crypto/asn1/
H A Da_strex.c596 BIO *btmp; local
598 btmp = BIO_new_fp(fp, BIO_NOCLOSE);
599 if (!btmp)
601 ret = X509_NAME_print(btmp, nm, indent);
602 BIO_free(btmp);
/freebsd-9.3-release/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-9.3-release/crypto/openssl/engines/
H A De_capi.c650 unsigned char *btmp; local
661 btmp = (unsigned char *)(dp + 1);
671 if (!lend_tobn(dkey->p, btmp, dsa_plen))
673 btmp += dsa_plen;
674 if (!lend_tobn(dkey->q, btmp, 20))
676 btmp += 20;
677 if (!lend_tobn(dkey->g, btmp, dsa_plen))
679 btmp += dsa_plen;
680 if (!lend_tobn(dkey->pub_key, btmp, dsa_plen))
682 btmp
[all...]
/freebsd-9.3-release/contrib/tzcode/stdtime/
H A Dlocaltime.c211 const struct tm * btmp);
1841 tmcomp(atmp, btmp)
1843 const struct tm * const btmp;
1847 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1848 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1849 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1850 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1851 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1852 result = atmp->tm_sec - btmp->tm_sec;
/freebsd-9.3-release/crypto/openssl/apps/
H A Dapps.c638 BIO *btmp; local
649 btmp = BIO_new(BIO_f_buffer());
650 pwdbio = BIO_push(btmp, pwdbio);
1601 BIGNUM *btmp; local
1604 btmp = b;
1606 btmp = BN_new();
1608 if (!btmp)
1611 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0))
1613 if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1621 BN_free(btmp);
[all...]

Completed in 124 milliseconds