thetime           729 ext/openssl/openssl.c 	struct tm thetime;
thetime           756 ext/openssl/openssl.c 	memset(&thetime, 0, sizeof(thetime));
thetime           762 ext/openssl/openssl.c 	thetime.tm_sec = atoi(thestr);
thetime           765 ext/openssl/openssl.c 	thetime.tm_min = atoi(thestr);
thetime           768 ext/openssl/openssl.c 	thetime.tm_hour = atoi(thestr);
thetime           771 ext/openssl/openssl.c 	thetime.tm_mday = atoi(thestr);
thetime           774 ext/openssl/openssl.c 	thetime.tm_mon = atoi(thestr)-1;
thetime           779 ext/openssl/openssl.c 		thetime.tm_year = atoi(thestr);
thetime           781 ext/openssl/openssl.c 		if (thetime.tm_year < 68) {
thetime           782 ext/openssl/openssl.c 			thetime.tm_year += 100;
thetime           786 ext/openssl/openssl.c 		thetime.tm_year = atoi(thestr) - 1900;
thetime           790 ext/openssl/openssl.c 	thetime.tm_isdst = -1;
thetime           791 ext/openssl/openssl.c 	ret = mktime(&thetime);
thetime           794 ext/openssl/openssl.c 	gmadjust = thetime.tm_gmtoff;
thetime           801 ext/openssl/openssl.c 	gmadjust = -(thetime.tm_isdst ? (long)timezone - 3600 : (long)timezone + 3600);