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

/freebsd-9.3-release/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-9.3-release/crypto/openssl/crypto/asn1/
H A Dasn1_gen.c611 ASN1_TYPE *atmp = NULL; local
620 if (!(atmp = ASN1_TYPE_new())) {
645 if (!X509V3_get_value_bool(&vtmp, &atmp->value.boolean)) {
657 if (!(atmp->value.integer = s2i_ASN1_INTEGER(NULL, (char *)str))) {
668 if (!(atmp->value.object = OBJ_txt2obj(str, 0))) {
680 if (!(atmp->value.asn1_string = ASN1_STRING_new())) {
684 if (!ASN1_STRING_set(atmp->value.asn1_string, str, -1)) {
688 atmp->value.asn1_string->type = utype;
689 if (!ASN1_TIME_check(atmp->value.asn1_string)) {
714 if (ASN1_mbstring_copy(&atmp
[all...]
/freebsd-9.3-release/crypto/openssl/apps/
H A Dasn1pars.c295 ASN1_TYPE *atmp; local
305 atmp = at;
308 ASN1_TYPE_free(atmp);
/freebsd-9.3-release/contrib/tzcode/stdtime/
H A Dlocaltime.c210 static int tmcomp(const struct tm * atmp,
1841 tmcomp(atmp, btmp)
1842 const struct tm * const atmp;
1847 if ((result = (atmp->tm_year - btmp->tm_year)) == 0 &&
1848 (result = (atmp->tm_mon - btmp->tm_mon)) == 0 &&
1849 (result = (atmp->tm_mday - btmp->tm_mday)) == 0 &&
1850 (result = (atmp->tm_hour - btmp->tm_hour)) == 0 &&
1851 (result = (atmp->tm_min - btmp->tm_min)) == 0)
1852 result = atmp->tm_sec - btmp->tm_sec;
/freebsd-9.3-release/contrib/nvi/common/
H A Doptions.c1016 OABBREV atmp, *ap; local
1021 atmp.name = name;
1022 if ((ap = bsearch(&atmp, abbrev, sizeof(abbrev) / sizeof(OABBREV) - 1,

Completed in 63 milliseconds