Home
last modified time | relevance | path

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

/external/boringssl/src/crypto/x509/
Dasn1_gen.c649 ASN1_TYPE *atmp = NULL; in asn1_str2type() local
658 if (!(atmp = ASN1_TYPE_new())) { in asn1_str2type()
683 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) { in asn1_str2type()
695 if (!(atmp->value.integer = s2i_ASN1_INTEGER(NULL, (char *)str))) { in asn1_str2type()
706 if (!(atmp->value.object = OBJ_txt2obj(str, 0))) { in asn1_str2type()
718 if (!(atmp->value.asn1_string = ASN1_STRING_new())) { in asn1_str2type()
722 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) { in asn1_str2type()
726 atmp->value.asn1_string->type = utype; in asn1_str2type()
727 if (!ASN1_TIME_check(atmp->value.asn1_string)) { in asn1_str2type()
753 if (ASN1_mbstring_copy(&atmp->value.asn1_string, (unsigned char *)str, in asn1_str2type()
[all …]
/external/icu/icu4c/source/tools/tzcode/
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()