thetime           707 ext/openssl/openssl.c 	struct tm thetime;
thetime           734 ext/openssl/openssl.c 	memset(&thetime, 0, sizeof(thetime));
thetime           740 ext/openssl/openssl.c 	thetime.tm_sec = atoi(thestr);
thetime           743 ext/openssl/openssl.c 	thetime.tm_min = atoi(thestr);
thetime           746 ext/openssl/openssl.c 	thetime.tm_hour = atoi(thestr);
thetime           749 ext/openssl/openssl.c 	thetime.tm_mday = atoi(thestr);
thetime           752 ext/openssl/openssl.c 	thetime.tm_mon = atoi(thestr)-1;
thetime           757 ext/openssl/openssl.c 		thetime.tm_year = atoi(thestr);
thetime           759 ext/openssl/openssl.c 		if (thetime.tm_year < 68) {
thetime           760 ext/openssl/openssl.c 			thetime.tm_year += 100;
thetime           764 ext/openssl/openssl.c 		thetime.tm_year = atoi(thestr) - 1900;
thetime           768 ext/openssl/openssl.c 	thetime.tm_isdst = -1;
thetime           769 ext/openssl/openssl.c 	ret = mktime(&thetime);
thetime           772 ext/openssl/openssl.c 	gmadjust = thetime.tm_gmtoff;
thetime           779 ext/openssl/openssl.c 	gmadjust = -(thetime.tm_isdst ? (long)timezone - 3600 : (long)timezone + 3600);