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

/macosx-10.10/ntp-92/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...]
/macosx-10.10/OpenSSL098-52/src/crypto/conf/
H A Dconf_lib.c115 BIO *btmp; local
117 if(!(btmp = BIO_new_fp(fp, BIO_NOCLOSE))) {
121 ltmp = CONF_load_bio(conf, btmp, eline);
122 BIO_free(btmp);
202 BIO *btmp; local
205 if(!(btmp = BIO_new_fp(out, BIO_NOCLOSE))) {
209 ret = CONF_dump_bio(conf, btmp);
210 BIO_free(btmp);
273 BIO *btmp; local
275 if(!(btmp
362 BIO *btmp; local
[all...]
H A Dconf_def.c218 char btmp[DECIMAL_SIZE(eline)+1]; local
450 BIO_snprintf(btmp,sizeof btmp,"%ld",eline);
451 ERR_add_error_data(2,"line ",btmp);
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/base32/
H A Dbase32core.tcl32 set btmp {}
41 lappend btmp [list $char $b]
47 lappend btmp [list ${char}=== $b]
53 lappend btmp [list ${char}====== $b]
59 lappend btmp [list ${char}= $b]
65 lappend btmp [list ${char}==== $b]
69 foreach item [lsort -index 0 -decreasing $btmp] {
/macosx-10.10/OpenSSL098-52/src/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);
144 BIO *out=NULL,*btmp=NULL; local
211 if ((btmp
335 BIO *out=NULL,*btmp=NULL,*etmp=NULL,*bio=NULL; local
631 BIO *btmp; local
906 BIO *btmp; local
[all...]
/macosx-10.10/OpenSSL098-52/src/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...]
/macosx-10.10/OpenSSL098-52/src/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);
/macosx-10.10/OpenSSL098-52/src/engines/
H A De_capi.c665 unsigned char *btmp; local
676 btmp = (unsigned char *)(dp + 1);
686 if (!lend_tobn(dkey->p, btmp, dsa_plen))
688 btmp += dsa_plen;
689 if (!lend_tobn(dkey->q, btmp, 20))
691 btmp += 20;
692 if (!lend_tobn(dkey->g, btmp, dsa_plen))
694 btmp += dsa_plen;
695 if (!lend_tobn(dkey->pub_key, btmp, dsa_plen))
697 btmp
[all...]
/macosx-10.10/Libc-1044.1.2/stdtime/FreeBSD/
H A Dlocaltime.c259 const struct tm * btmp);
1952 tmcomp(atmp, btmp)
1954 const struct tm * const btmp;
1959 * Assume that atmp and btmp point to normalized tm strutures.
1962 if (atmp->tm_year != btmp->tm_year) {
1963 return (atmp->tm_year > btmp->tm_year ? 1 : -1);
1965 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1966 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1967 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1968 (result = (atmp->tm_min - btmp
[all...]
/macosx-10.10/OpenLDAP-499.27/OpenLDAP/servers/slapd/
H A Dbackglue.c392 BackendDB *b1 = NULL, *btmp; local
469 btmp = b0;
472 btmp = gi->gi_n[i].gn_be;
475 if (!btmp || !btmp->be_search)
477 if (!dnIsSuffix(&btmp->be_nsuffix[0], &b1->be_nsuffix[0]))
479 if (get_no_subordinate_glue(op) && btmp != b1)
486 op->o_conn->c_pagedresults_state.ps_be != btmp )
504 op->o_bd = btmp;
621 if ( btmp
[all...]
H A Dlimits.c896 struct berval btmp; local
935 btmp.bv_val = ptr;
936 btmp.bv_len = 0;
939 &btmp, WHATSLEFT );
941 bv->bv_len += btmp.bv_len;
/macosx-10.10/ICU-531.30/icuSources/tools/tzcode/
H A Dlocaltime.c177 const struct tm * btmp);
1659 tmcomp(atmp, btmp)
1661 register const struct tm * const btmp;
1665 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1666 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1667 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1668 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1669 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1670 result = atmp->tm_sec - btmp->tm_sec;
/macosx-10.10/OpenSSL098-52/src/apps/
H A Dapps.c642 BIO *btmp; local
650 btmp = BIO_new(BIO_f_buffer());
651 pwdbio = BIO_push(btmp, pwdbio);
1669 BIGNUM *btmp; local
1672 btmp = b;
1674 btmp = BN_new();
1676 if (!btmp)
1679 if (!BN_pseudo_rand(btmp, SERIAL_RAND_BITS, 0, 0))
1681 if (ai && !BN_to_ASN1_INTEGER(btmp, ai))
1689 BN_free(btmp);
[all...]

Completed in 196 milliseconds