Searched refs:atmp (Results 1 - 7 of 7) sorted by relevance

/freebsd-11-stable/contrib/ntp/libntp/
H A Dmktime.c150 register struct tm * atmp,
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)
169 else if(btmp->tm_isdst == 1 && !atmp->tm_isdst)
170 atmp = mkdst(atmp);
174 if ((result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
175 (result = (atmp
149 tmcomp( register struct tm * atmp, register struct tm * btmp ) argument
[all...]
/freebsd-11-stable/crypto/openssl/crypto/asn1/
H A Dasn1_gen.c639 ASN1_TYPE *atmp = NULL; local
648 if (!(atmp = ASN1_TYPE_new())) {
673 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) {
685 if (!(atmp->value.integer = s2i_ASN1_INTEGER(NULL, (char *)str))) {
696 if (!(atmp->value.object = OBJ_txt2obj(str, 0))) {
708 if (!(atmp->value.asn1_string = ASN1_STRING_new())) {
712 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) {
716 atmp->value.asn1_string->type = utype;
717 if (!ASN1_TIME_check(atmp->value.asn1_string)) {
743 if (ASN1_mbstring_copy(&atmp
[all...]
/freebsd-11-stable/crypto/openssl/crypto/dh/
H A Ddh_kdf.c100 X509_ALGOR atmp; local
111 atmp.algorithm = key_oid;
112 atmp.parameter = &ctr_atype;
121 derlen = CMS_SharedInfo_encode(pder, &atmp, pukm_oct, outlen);
/freebsd-11-stable/crypto/openssl/apps/
H A Dasn1pars.c295 ASN1_TYPE *atmp; local
305 atmp = at;
308 ASN1_TYPE_free(atmp);
/freebsd-11-stable/contrib/tzcode/stdtime/
H A Dlocaltime.c211 static int tmcomp(const struct tm * atmp,
1817 tmcomp(atmp, btmp)
1818 const struct tm * const atmp;
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/contrib/nvi/common/
H A Doptions.c1054 OABBREV atmp, *ap; local
1059 atmp.name = name;
1060 if ((ap = bsearch(&atmp, abbrev, sizeof(abbrev) / sizeof(OABBREV) - 1,
/freebsd-11-stable/crypto/openssl/ssl/
H A Dt1_lib.c3793 const unsigned char *ptmp, *atmp; local
3801 for (j = 0, atmp = allow; j < allowlen; j += 2, atmp += 2) {
3802 if (ptmp[0] == atmp[0] && ptmp[1] == atmp[1]) {

Completed in 155 milliseconds