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

/freebsd-10.0-release/contrib/ntp/libntp/
H A Dmktime.c146 register struct tm * btmp
153 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
154 (result = (atmp->tm_mon - btmp->tm_mon)) == 0)
155 result = (atmp->tm_mday - btmp->tm_mday);
162 if(atmp->tm_isdst == 1 && !btmp->tm_isdst)
163 btmp = mkdst(btmp);
164 else if(btmp->tm_isdst == 1 && !atmp->tm_isdst)
169 if ((result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
170 (result = (atmp->tm_min - btmp
[all...]
/freebsd-10.0-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);
208 BIO *btmp; local
211 if(!(btmp = BIO_new_fp(out, BIO_NOCLOSE))) {
215 ret = CONF_dump_bio(conf, btmp);
216 BIO_free(btmp);
279 BIO *btmp; local
281 if(!(btmp
368 BIO *btmp; local
[all...]
H A Dconf_def.c218 char btmp[DECIMAL_SIZE(eline)+1]; local
442 BIO_snprintf(btmp,sizeof btmp,"%ld",eline);
443 ERR_add_error_data(2,"line ",btmp);
/freebsd-10.0-release/crypto/openssl/crypto/pkcs7/
H A Dpk7_doit.c107 BIO *btmp; local
109 if ((btmp=BIO_new(BIO_f_md())) == NULL)
122 BIO_set_md(btmp,md);
124 *pbio=btmp;
125 else if (!BIO_push(*pbio,btmp))
130 btmp=NULL;
135 if (btmp)
136 BIO_free(btmp);
266 BIO *out=NULL,*btmp=NULL; local
332 if ((btmp
423 BIO *out=NULL,*btmp=NULL,*etmp=NULL,*bio=NULL; local
748 BIO *btmp; local
1028 BIO *btmp; local
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/x509v3/
H A Dv3_utl.c215 char *btmp; local
216 if(!(btmp = value->value)) goto err;
217 if(!strcmp(btmp, "TRUE") || !strcmp(btmp, "true")
218 || !strcmp(btmp, "Y") || !strcmp(btmp, "y")
219 || !strcmp(btmp, "YES") || !strcmp(btmp, "yes")) {
222 } else if(!strcmp(btmp, "FALSE") || !strcmp(btmp, "fals
[all...]
/freebsd-10.0-release/crypto/openssl/crypto/asn1/
H A Da_strex.c531 BIO *btmp; local
533 btmp = BIO_new_fp(fp, BIO_NOCLOSE);
534 if(!btmp) return -1;
535 ret = X509_NAME_print(btmp, nm, indent);
536 BIO_free(btmp);
/freebsd-10.0-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-10.0-release/crypto/openssl/engines/
H A De_capi.c688 unsigned char *btmp; local
699 btmp = (unsigned char *)(dp + 1);
709 if (!lend_tobn(dkey->p, btmp, dsa_plen))
711 btmp += dsa_plen;
712 if (!lend_tobn(dkey->q, btmp, 20))
714 btmp += 20;
715 if (!lend_tobn(dkey->g, btmp, dsa_plen))
717 btmp += dsa_plen;
718 if (!lend_tobn(dkey->pub_key, btmp, dsa_plen))
720 btmp
[all...]
/freebsd-10.0-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-10.0-release/crypto/openssl/apps/
H A Dapps.c681 BIO *btmp; local
689 btmp = BIO_new(BIO_f_buffer());
690 pwdbio = BIO_push(btmp, pwdbio);
1775 BIGNUM *btmp; local
1778 btmp = b;
1780 btmp = BN_new();
1782 if (!btmp)
1785 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0))
1787 if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1795 BN_free(btmp);
[all...]

Completed in 197 milliseconds