Searched refs:atmp (Results 1 – 8 of 8) sorted by relevance
| /freebsd/crypto/openssl/crypto/asn1/ |
| H A D | evp_asn1.c | 103 asn1_int_oct atmp; variable 106 atmp.num = num; 107 atmp.oct = &oct; 110 if (ASN1_TYPE_pack_sequence(ASN1_ITEM_rptr(asn1_int_oct), &atmp, &a)) 125 asn1_int_oct *atmp = NULL; in ASN1_TYPE_get_int_octetstring() local 132 atmp = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(asn1_int_oct), a); in ASN1_TYPE_get_int_octetstring() 134 if (atmp == NULL) in ASN1_TYPE_get_int_octetstring() 137 ret = asn1_type_get_int_oct(atmp->oct, atmp->num, num, data, max_len); in ASN1_TYPE_get_int_octetstring() 143 M_ASN1_free_of(atmp, asn1_int_oct); in ASN1_TYPE_get_int_octetstring() 166 asn1_oct_int atmp; variable [all …]
|
| H A D | asn1_gen.c | 582 ASN1_TYPE *atmp = NULL; in asn1_str2type() local 588 if ((atmp = ASN1_TYPE_new()) == NULL) { in asn1_str2type() 613 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) { in asn1_str2type() 625 if ((atmp->value.integer in asn1_str2type() 638 if ((atmp->value.object = OBJ_txt2obj(str, 0)) == NULL) { in asn1_str2type() 650 if ((atmp->value.asn1_string = ASN1_STRING_new()) == NULL) { in asn1_str2type() 654 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) { in asn1_str2type() 658 atmp->value.asn1_string->type = utype; in asn1_str2type() 659 if (!ASN1_TIME_check(atmp->value.asn1_string)) { in asn1_str2type() 684 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str, in asn1_str2type() [all …]
|
| /freebsd/contrib/ntp/libntp/ |
| H A D | mktime.c | 150 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 D | asn1parse.c | 246 ASN1_TYPE *atmp; in asn1parse_main() local 256 atmp = at; in asn1parse_main() 259 ASN1_TYPE_free(atmp); in asn1parse_main()
|
| /freebsd/contrib/tzcode/ |
| H A D | localtime.c | 2566 tmcomp(register const struct tm *const atmp, in tmcomp() argument 2571 if (atmp->tm_year != btmp->tm_year) in tmcomp() 2572 return atmp->tm_year < btmp->tm_year ? -1 : 1; in tmcomp() 2573 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in tmcomp() 2574 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp() 2575 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp() 2576 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp() 2577 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()
|
| /freebsd/contrib/nvi/common/ |
| H A D | options.c | 1035 OABBREV atmp, *ap; in opts_search() local 1040 atmp.name = name; in opts_search() 1041 if ((ap = bsearch(&atmp, abbrev, sizeof(abbrev) / sizeof(OABBREV) - 1, in opts_search()
|
| /freebsd/sys/dev/ice/ |
| H A D | ice_sched.c | 840 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
|
| /freebsd/crypto/openssl/ssl/ |
| H A D | t1_lib.c | 3478 const uint16_t *ptmp, *atmp; in tls12_shared_sigalgs() local 3487 for (j = 0, atmp = allow; j < allowlen; j++, atmp++) { in tls12_shared_sigalgs() 3488 if (*ptmp == *atmp) { in tls12_shared_sigalgs()
|