Home
last modified time | relevance | path

Searched refs:atmp (Results 1 – 8 of 8) sorted by relevance

/freebsd/crypto/openssl/crypto/asn1/
H A Devp_asn1.c97 asn1_int_oct atmp; variable
100 atmp.num = num;
101 atmp.oct = &oct;
104 if (ASN1_TYPE_pack_sequence(ASN1_ITEM_rptr(asn1_int_oct), &atmp, &a))
112 asn1_int_oct *atmp = NULL; in ASN1_TYPE_get_int_octetstring() local
119 atmp = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(asn1_int_oct), a); in ASN1_TYPE_get_int_octetstring()
121 if (atmp == NULL) in ASN1_TYPE_get_int_octetstring()
124 ret = asn1_type_get_int_oct(atmp->oct, atmp->num, num, data, max_len); in ASN1_TYPE_get_int_octetstring()
130 M_ASN1_free_of(atmp, asn1_int_oct); in ASN1_TYPE_get_int_octetstring()
153 asn1_oct_int atmp; variable
[all …]
H A Dasn1_gen.c578 ASN1_TYPE *atmp = NULL; in asn1_str2type() local
584 if ((atmp = ASN1_TYPE_new()) == NULL) { in asn1_str2type()
609 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) { in asn1_str2type()
621 if ((atmp->value.integer in asn1_str2type()
633 if ((atmp->value.object = OBJ_txt2obj(str, 0)) == NULL) { in asn1_str2type()
645 if ((atmp->value.asn1_string = ASN1_STRING_new()) == NULL) { in asn1_str2type()
649 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) { in asn1_str2type()
653 atmp->value.asn1_string->type = utype; in asn1_str2type()
654 if (!ASN1_TIME_check(atmp->value.asn1_string)) { in asn1_str2type()
679 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str, in asn1_str2type()
[all …]
/freebsd/contrib/ntp/libntp/
H A Dmktime.c150 register struct tm * atmp, in tmcomp() argument
158 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 && in tmcomp()
159 (result = (atmp->tm_mon - btmp->tm_mon)) == 0) in tmcomp()
160 result = (atmp->tm_mday - btmp->tm_mday); in tmcomp()
167 if(atmp->tm_isdst == 1 && !btmp->tm_isdst) in tmcomp()
169 else if(btmp->tm_isdst == 1 && !atmp->tm_isdst) in tmcomp()
170 atmp = mkdst(atmp); in tmcomp()
174 if ((result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp()
175 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp()
176 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()
/freebsd/crypto/openssl/apps/
H A Dasn1parse.c234 ASN1_TYPE *atmp; in asn1parse_main() local
244 atmp = at; in asn1parse_main()
247 ASN1_TYPE_free(atmp); in asn1parse_main()
/freebsd/contrib/tzcode/
H A Dlocaltime.c2060 tmcomp(register const struct tm *const atmp, in increment_overflow32()
2065 if (atmp->tm_year != btmp->tm_year) in increment_overflow32()
2066 return atmp->tm_year < btmp->tm_year ? -1 : 1; in increment_overflow32()
2067 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in increment_overflow32()
2068 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in increment_overflow32()
2069 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in increment_overflow32()
2070 (result = (atmp->tm_min - btmp->tm_min)) == 0) in increment_overflow32()
2071 result = atmp->tm_sec - btmp->tm_sec; in increment_overflow32()
2119 tmcomp(register const struct tm * const atmp,register const struct tm * const btmp) tmcomp() argument
/freebsd/contrib/nvi/common/
H A Doptions.c1046 OABBREV atmp, *ap; in opts_search() local
1051 atmp.name = name; in opts_search()
1052 if ((ap = bsearch(&atmp, abbrev, sizeof(abbrev) / sizeof(OABBREV) - 1, in opts_search()
/freebsd/crypto/openssl/ssl/
H A Dt1_lib.c2210 const uint16_t *ptmp, *atmp; in tls12_shared_sigalgs() local
2219 for (j = 0, atmp = allow; j < allowlen; j++, atmp++) { in tls12_shared_sigalgs()
2220 if (*ptmp == *atmp) { in tls12_shared_sigalgs()
/freebsd/sys/dev/ice/
H A Dice_sched.c840 struct ice_sched_agg_info *atmp; in ice_sched_clear_agg()
842 LIST_FOR_EACH_ENTRY_SAFE(agg_info, atmp, &hw->agg_list, in ice_sched_clear_agg()
2121 struct ice_sched_agg_info *atmp; in ice_sched_rm_agg_vsi_info()
2123 LIST_FOR_EACH_ENTRY_SAFE(agg_info, atmp, &pi->hw->agg_list, in ice_sched_rm_agg_vsi_info()
838 struct ice_sched_agg_info *atmp; ice_sched_clear_agg() local
2119 struct ice_sched_agg_info *atmp; ice_sched_rm_agg_vsi_info() local