Home
last modified time | relevance | path

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

/third_party/node/deps/openssl/openssl/crypto/asn1/
H A Devp_asn1.c97 asn1_int_oct atmp;
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;
119 atmp = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(asn1_int_oct), a);
121 if (atmp == NULL)
124 ret = asn1_type_get_int_oct(atmp->oct, atmp->num, num, data, max_len);
130 M_ASN1_free_of(atmp, asn1_int_oc
[all...]
H A Dasn1_gen.c577 ASN1_TYPE *atmp = NULL; in asn1_str2type() local
583 if ((atmp = ASN1_TYPE_new()) == NULL) { in asn1_str2type()
608 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) { in asn1_str2type()
620 if ((atmp->value.integer in asn1_str2type()
632 if ((atmp->value.object = OBJ_txt2obj(str, 0)) == NULL) { in asn1_str2type()
644 if ((atmp->value.asn1_string = ASN1_STRING_new()) == NULL) { in asn1_str2type()
648 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) { in asn1_str2type()
652 atmp->value.asn1_string->type = utype; in asn1_str2type()
653 if (!ASN1_TIME_check(atmp->value.asn1_string)) { in asn1_str2type()
678 if (ASN1_mbstring_copy(&atmp in asn1_str2type()
[all...]
/third_party/openssl/crypto/asn1/
H A Devp_asn1.c97 asn1_int_oct atmp;
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;
119 atmp = ASN1_TYPE_unpack_sequence(ASN1_ITEM_rptr(asn1_int_oct), a);
121 if (atmp == NULL)
124 ret = asn1_type_get_int_oct(atmp->oct, atmp->num, num, data, max_len);
130 M_ASN1_free_of(atmp, asn1_int_oc
[all...]
H A Dasn1_gen.c577 ASN1_TYPE *atmp = NULL; in asn1_str2type() local
583 if ((atmp = ASN1_TYPE_new()) == NULL) { in asn1_str2type()
608 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) { in asn1_str2type()
620 if ((atmp->value.integer in asn1_str2type()
632 if ((atmp->value.object = OBJ_txt2obj(str, 0)) == NULL) { in asn1_str2type()
644 if ((atmp->value.asn1_string = ASN1_STRING_new()) == NULL) { in asn1_str2type()
648 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) { in asn1_str2type()
652 atmp->value.asn1_string->type = utype; in asn1_str2type()
653 if (!ASN1_TIME_check(atmp->value.asn1_string)) { in asn1_str2type()
678 if (ASN1_mbstring_copy(&atmp in asn1_str2type()
[all...]
/third_party/musl/src/network/
H A Dgetnameinfo.c68 unsigned char _buf[1032], atmp[16]; in reverse_hosts() local
72 memcpy(atmp+12, a, 4); in reverse_hosts()
73 memcpy(atmp, "\0\0\0\0\0\0\0\0\0\0\xff\xff", 12); in reverse_hosts()
74 a = atmp; in reverse_hosts()
/third_party/musl/porting/linux/user/src/network/
H A Dgetnameinfo.c68 unsigned char _buf[1032], atmp[16]; in reverse_hosts() local
72 memcpy(atmp+12, a, 4); in reverse_hosts()
73 memcpy(atmp, "\0\0\0\0\0\0\0\0\0\0\xff\xff", 12); in reverse_hosts()
74 a = atmp; in reverse_hosts()
/third_party/musl/porting/liteos_a/user/src/network/
H A Dgetnameinfo.c48 unsigned char _buf[1032], atmp[16]; in reverse_hosts() local
53 memcpy(atmp+12, a, 4); in reverse_hosts()
54 memcpy(atmp, "\0\0\0\0\0\0\0\0\0\0\xff\xff", 12); in reverse_hosts()
55 a = atmp; in reverse_hosts()
/third_party/node/deps/openssl/openssl/apps/
H A Dasn1parse.c233 ASN1_TYPE *atmp; in asn1parse_main() local
243 atmp = at; in asn1parse_main()
246 ASN1_TYPE_free(atmp); in asn1parse_main()
/third_party/openssl/apps/
H A Dasn1parse.c236 ASN1_TYPE *atmp; in asn1parse_main() local
246 atmp = at; in asn1parse_main()
249 ASN1_TYPE_free(atmp); in asn1parse_main()
/third_party/icu/icu4c/source/tools/tzcode/
H A Dlocaltime.c174 static int tmcomp(const struct tm * atmp,
1653 tmcomp(register const struct tm *const atmp, in tmcomp() argument
1658 if (atmp->tm_year != btmp->tm_year) in tmcomp()
1659 return atmp->tm_year < btmp->tm_year ? -1 : 1; in tmcomp()
1660 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in tmcomp()
1661 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp()
1662 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp()
1663 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp()
1664 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()
/third_party/skia/third_party/externals/icu/source/tools/tzcode/
H A Dlocaltime.c172 static int tmcomp(const struct tm * atmp,
1651 tmcomp(register const struct tm *const atmp, in tmcomp() argument
1656 if (atmp->tm_year != btmp->tm_year) in tmcomp()
1657 return atmp->tm_year < btmp->tm_year ? -1 : 1; in tmcomp()
1658 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in tmcomp()
1659 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp()
1660 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp()
1661 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp()
1662 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()
/third_party/tzdata/
H A Dlocaltime.c1923 tmcomp(register const struct tm *const atmp, in tmcomp() argument
1928 if (atmp->tm_year != btmp->tm_year) in tmcomp()
1929 return atmp->tm_year < btmp->tm_year ? -1 : 1; in tmcomp()
1930 if ((result = (atmp->tm_mon - btmp->tm_mon)) == 0 && in tmcomp()
1931 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 && in tmcomp()
1932 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 && in tmcomp()
1933 (result = (atmp->tm_min - btmp->tm_min)) == 0) in tmcomp()
1934 result = atmp->tm_sec - btmp->tm_sec; in tmcomp()
/third_party/node/deps/openssl/openssl/ssl/
H A Dt1_lib.c2209 const uint16_t *ptmp, *atmp; in tls12_shared_sigalgs() local
2218 for (j = 0, atmp = allow; j < allowlen; j++, atmp++) { in tls12_shared_sigalgs()
2219 if (*ptmp == *atmp) { in tls12_shared_sigalgs()
/third_party/openssl/ssl/
H A Dt1_lib.c2189 const uint16_t *ptmp, *atmp; in tls12_shared_sigalgs() local
2198 for (j = 0, atmp = allow; j < allowlen; j++, atmp++) { in tls12_shared_sigalgs()
2199 if (*ptmp == *atmp) { in tls12_shared_sigalgs()

Completed in 24 milliseconds