compiler_globals  134 Zend/zend.c     	STD_ZEND_INI_BOOLEAN("zend.multibyte", "0", ZEND_INI_PERDIR, OnUpdateBool, multibyte,      zend_compiler_globals, compiler_globals)
compiler_globals  136 Zend/zend.c     	STD_ZEND_INI_BOOLEAN("zend.detect_unicode",			"1",	ZEND_INI_ALL,		OnUpdateBool, detect_unicode, zend_compiler_globals, compiler_globals)
compiler_globals  478 Zend/zend.c    static void compiler_globals_ctor(zend_compiler_globals *compiler_globals) /* {{{ */
compiler_globals  480 Zend/zend.c    	compiler_globals->compiled_filename = NULL;
compiler_globals  482 Zend/zend.c    	compiler_globals->function_table = (HashTable *) malloc(sizeof(HashTable));
compiler_globals  483 Zend/zend.c    	zend_hash_init_ex(compiler_globals->function_table, 1024, NULL, ZEND_FUNCTION_DTOR, 1, 0);
compiler_globals  484 Zend/zend.c    	zend_hash_copy(compiler_globals->function_table, global_function_table, function_copy_ctor);
compiler_globals  486 Zend/zend.c    	compiler_globals->class_table = (HashTable *) malloc(sizeof(HashTable));
compiler_globals  487 Zend/zend.c    	zend_hash_init_ex(compiler_globals->class_table, 64, NULL, ZEND_CLASS_DTOR, 1, 0);
compiler_globals  488 Zend/zend.c    	zend_hash_copy(compiler_globals->class_table, global_class_table, zend_class_add_ref);
compiler_globals  492 Zend/zend.c    	compiler_globals->auto_globals = (HashTable *) malloc(sizeof(HashTable));
compiler_globals  493 Zend/zend.c    	zend_hash_init_ex(compiler_globals->auto_globals, 8, NULL, auto_global_dtor, 1, 0);
compiler_globals  494 Zend/zend.c    	zend_hash_copy(compiler_globals->auto_globals, global_auto_globals_table, auto_global_copy_ctor);
compiler_globals  496 Zend/zend.c    	compiler_globals->last_static_member = zend_hash_num_elements(compiler_globals->class_table);
compiler_globals  497 Zend/zend.c    	if (compiler_globals->last_static_member) {
compiler_globals  498 Zend/zend.c    		compiler_globals->static_members_table = calloc(compiler_globals->last_static_member, sizeof(zval*));
compiler_globals  500 Zend/zend.c    		compiler_globals->static_members_table = NULL;
compiler_globals  502 Zend/zend.c    	compiler_globals->script_encoding_list = NULL;
compiler_globals  504 Zend/zend.c    	zend_interned_empty_string_init(&compiler_globals->empty_string);
compiler_globals  506 Zend/zend.c    	memset(compiler_globals->one_char_string, 0, sizeof(compiler_globals->one_char_string));
compiler_globals  510 Zend/zend.c    static void compiler_globals_dtor(zend_compiler_globals *compiler_globals) /* {{{ */
compiler_globals  512 Zend/zend.c    	if (compiler_globals->function_table != GLOBAL_FUNCTION_TABLE) {
compiler_globals  513 Zend/zend.c    		zend_hash_destroy(compiler_globals->function_table);
compiler_globals  514 Zend/zend.c    		free(compiler_globals->function_table);
compiler_globals  516 Zend/zend.c    	if (compiler_globals->class_table != GLOBAL_CLASS_TABLE) {
compiler_globals  517 Zend/zend.c    		zend_hash_destroy(compiler_globals->class_table);
compiler_globals  518 Zend/zend.c    		free(compiler_globals->class_table);
compiler_globals  520 Zend/zend.c    	if (compiler_globals->auto_globals != GLOBAL_AUTO_GLOBALS_TABLE) {
compiler_globals  521 Zend/zend.c    		zend_hash_destroy(compiler_globals->auto_globals);
compiler_globals  522 Zend/zend.c    		free(compiler_globals->auto_globals);
compiler_globals  524 Zend/zend.c    	if (compiler_globals->static_members_table) {
compiler_globals  525 Zend/zend.c    		free(compiler_globals->static_members_table);
compiler_globals  527 Zend/zend.c    	if (compiler_globals->script_encoding_list) {
compiler_globals  528 Zend/zend.c    		pefree((char*)compiler_globals->script_encoding_list, 1);
compiler_globals  530 Zend/zend.c    	compiler_globals->last_static_member = 0;
compiler_globals  532 Zend/zend.c    	zend_interned_empty_string_free(&compiler_globals->empty_string);
compiler_globals  635 Zend/zend.c    	zend_compiler_globals *compiler_globals;
compiler_globals  719 Zend/zend.c    	compiler_globals = ts_resource(compiler_globals_id);
compiler_globals  722 Zend/zend.c    	compiler_globals_dtor(compiler_globals);
compiler_globals  723 Zend/zend.c    	compiler_globals->in_compilation = 0;
compiler_globals  724 Zend/zend.c    	compiler_globals->function_table = (HashTable *) malloc(sizeof(HashTable));
compiler_globals  725 Zend/zend.c    	compiler_globals->class_table = (HashTable *) malloc(sizeof(HashTable));
compiler_globals  727 Zend/zend.c    	*compiler_globals->function_table = *GLOBAL_FUNCTION_TABLE;
compiler_globals  728 Zend/zend.c    	*compiler_globals->class_table = *GLOBAL_CLASS_TABLE;
compiler_globals  729 Zend/zend.c    	compiler_globals->auto_globals = GLOBAL_AUTO_GLOBALS_TABLE;
compiler_globals  780 Zend/zend.c    	zend_compiler_globals *compiler_globals = ts_resource(compiler_globals_id);
compiler_globals  783 Zend/zend.c    	*GLOBAL_FUNCTION_TABLE = *compiler_globals->function_table;
compiler_globals  784 Zend/zend.c    	*GLOBAL_CLASS_TABLE = *compiler_globals->class_table;
compiler_globals  791 Zend/zend.c    	free(compiler_globals->function_table);
compiler_globals  792 Zend/zend.c    	free(compiler_globals->class_table);
compiler_globals  793 Zend/zend.c    	if ((script_encoding_list = (zend_encoding **)compiler_globals->script_encoding_list)) {
compiler_globals  794 Zend/zend.c    		compiler_globals_ctor(compiler_globals);
compiler_globals  795 Zend/zend.c    		compiler_globals->script_encoding_list = (const zend_encoding **)script_encoding_list;
compiler_globals  797 Zend/zend.c    		compiler_globals_ctor(compiler_globals);
compiler_globals   85 Zend/zend_compile.c ZEND_API zend_compiler_globals compiler_globals;
compiler_globals   36 Zend/zend_globals_macros.h # define CG(v) (compiler_globals.v)
compiler_globals   37 Zend/zend_globals_macros.h extern ZEND_API struct _zend_compiler_globals compiler_globals;
compiler_globals  514 main/main.c    	STD_PHP_INI_BOOLEAN("short_open_tag",	DEFAULT_SHORT_OPEN_TAG,	PHP_INI_SYSTEM|PHP_INI_PERDIR,		OnUpdateBool,			short_tags,				zend_compiler_globals,	compiler_globals)
compiler_globals   80 sapi/litespeed/lsapi_main.c zend_compiler_globals    *compiler_globals;
compiler_globals 1031 sapi/litespeed/lsapi_main.c     compiler_globals = ts_resource(compiler_globals_id);