tzcache           680 ext/date/php_date.c 	date_globals->tzcache = NULL;
tzcache           700 ext/date/php_date.c 	DATEG(tzcache) = NULL;
tzcache           714 ext/date/php_date.c 	if(DATEG(tzcache)) {
tzcache           715 ext/date/php_date.c 		zend_hash_destroy(DATEG(tzcache));
tzcache           716 ext/date/php_date.c 		FREE_HASHTABLE(DATEG(tzcache));
tzcache           717 ext/date/php_date.c 		DATEG(tzcache) = NULL;
tzcache           921 ext/date/php_date.c 	if(!DATEG(tzcache)) {
tzcache           922 ext/date/php_date.c 		ALLOC_HASHTABLE(DATEG(tzcache));
tzcache           923 ext/date/php_date.c 		zend_hash_init(DATEG(tzcache), 4, NULL, _php_date_tzinfo_dtor, 0);
tzcache           926 ext/date/php_date.c 	if ((tzi = zend_hash_str_find_ptr(DATEG(tzcache), formal_tzname, strlen(formal_tzname))) != NULL) {
tzcache           932 ext/date/php_date.c 		zend_hash_str_add_ptr(DATEG(tzcache), formal_tzname, strlen(formal_tzname), tzi);
tzcache           200 ext/date/php_date.h 	HashTable               *tzcache;