GLOBAL_FUNCTION_TABLE  539 Zend/zend.c    	if (compiler_globals->function_table != GLOBAL_FUNCTION_TABLE) {
GLOBAL_FUNCTION_TABLE  702 Zend/zend.c    	GLOBAL_FUNCTION_TABLE = (HashTable *) malloc(sizeof(HashTable));
GLOBAL_FUNCTION_TABLE  707 Zend/zend.c    	zend_hash_init_ex(GLOBAL_FUNCTION_TABLE, 100, NULL, ZEND_FUNCTION_DTOR, 1, 0);
GLOBAL_FUNCTION_TABLE  733 Zend/zend.c    	*compiler_globals->function_table = *GLOBAL_FUNCTION_TABLE;
GLOBAL_FUNCTION_TABLE  786 Zend/zend.c    	*GLOBAL_FUNCTION_TABLE = *compiler_globals->function_table;
GLOBAL_FUNCTION_TABLE  829 Zend/zend.c    		zend_hash_reverse_apply(GLOBAL_FUNCTION_TABLE, (apply_func_t) zend_cleanup_function_data_full TSRMLS_CC);
GLOBAL_FUNCTION_TABLE  832 Zend/zend.c    		zend_hash_reverse_apply(GLOBAL_FUNCTION_TABLE, (apply_func_t) clean_non_persistent_function_full TSRMLS_CC);
GLOBAL_FUNCTION_TABLE  841 Zend/zend.c    	zend_hash_destroy(GLOBAL_FUNCTION_TABLE);
GLOBAL_FUNCTION_TABLE  850 Zend/zend.c    	free(GLOBAL_FUNCTION_TABLE);
GLOBAL_FUNCTION_TABLE  858 Zend/zend.c    	GLOBAL_FUNCTION_TABLE = NULL;