ZCSG              116 ext/opcache/ZendAccelerator.c # define INCREMENT(v) InterlockedIncrement(&ZCSG(v))
ZCSG              117 ext/opcache/ZendAccelerator.c # define DECREMENT(v) InterlockedDecrement(&ZCSG(v))
ZCSG              118 ext/opcache/ZendAccelerator.c # define LOCKVAL(v)   (ZCSG(v))
ZCSG              210 ext/opcache/ZendAccelerator.c 			    (ZCG(counted) || ZCSG(accelerator_enabled))) {
ZCSG              212 ext/opcache/ZendAccelerator.c 				ZCG(include_path_key) = zend_accel_hash_find(&ZCSG(include_paths), ZCG(include_path), ZCG(include_path_len) + 1);
ZCSG              214 ext/opcache/ZendAccelerator.c 			        !zend_accel_hash_is_full(&ZCSG(include_paths))) {
ZCSG              218 ext/opcache/ZendAccelerator.c 					ZCG(include_path_key) = zend_accel_hash_find(&ZCSG(include_paths), ZCG(include_path), ZCG(include_path_len) + 1);
ZCSG              220 ext/opcache/ZendAccelerator.c 					    !zend_accel_hash_is_full(&ZCSG(include_paths))) {
ZCSG              226 ext/opcache/ZendAccelerator.c 							key[ZCG(include_path_len) + 1] = 'A' + ZCSG(include_paths).num_entries;
ZCSG              228 ext/opcache/ZendAccelerator.c 							zend_accel_hash_update(&ZCSG(include_paths), key, ZCG(include_path_len) + 1, 0, ZCG(include_path_key));
ZCSG              278 ext/opcache/ZendAccelerator.c 	for (i = 0; i < ZCSG(interned_strings).nTableSize; i++) {
ZCSG              279 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings).arBuckets[i] = ZCSG(interned_strings_saved_state).arBuckets[i];
ZCSG              280 ext/opcache/ZendAccelerator.c 		if (ZCSG(interned_strings).arBuckets[i]) {
ZCSG              281 ext/opcache/ZendAccelerator.c 			ZCSG(interned_strings).arBuckets[i]->pLast = NULL;
ZCSG              284 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings).pListHead = ZCSG(interned_strings_saved_state).pListHead;
ZCSG              285 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings).pListTail = ZCSG(interned_strings_saved_state).pListTail;
ZCSG              286 ext/opcache/ZendAccelerator.c 	if (ZCSG(interned_strings).pListHead) {
ZCSG              287 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings).pListHead->pListLast = NULL;
ZCSG              289 ext/opcache/ZendAccelerator.c 	if (ZCSG(interned_strings).pListTail) {
ZCSG              290 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings).pListTail->pListNext = NULL;
ZCSG              292 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings_top) = ZCSG(interned_strings_saved_state).top;
ZCSG              297 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings_saved_state).arBuckets = (Bucket**)zend_shared_alloc(ZCSG(interned_strings).nTableSize * sizeof(Bucket *));
ZCSG              298 ext/opcache/ZendAccelerator.c 	if (!ZCSG(interned_strings_saved_state).arBuckets) {
ZCSG              301 ext/opcache/ZendAccelerator.c 	memcpy(ZCSG(interned_strings_saved_state).arBuckets, ZCSG(interned_strings).arBuckets, ZCSG(interned_strings).nTableSize * sizeof(Bucket *));
ZCSG              302 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings_saved_state).pListHead = ZCSG(interned_strings).pListHead;
ZCSG              303 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings_saved_state).pListTail = ZCSG(interned_strings).pListTail;
ZCSG              304 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings_saved_state).top = ZCSG(interned_strings_top);
ZCSG              316 ext/opcache/ZendAccelerator.c 	if (arKey >= ZCSG(interned_strings_start) && arKey < ZCSG(interned_strings_end)) {
ZCSG              322 ext/opcache/ZendAccelerator.c 	nIndex = h & ZCSG(interned_strings).nTableMask;
ZCSG              325 ext/opcache/ZendAccelerator.c 	p = ZCSG(interned_strings).arBuckets[nIndex];
ZCSG              338 ext/opcache/ZendAccelerator.c 	if (ZCSG(interned_strings_top) + ZEND_MM_ALIGNED_SIZE(sizeof(Bucket) + nKeyLength) >=
ZCSG              339 ext/opcache/ZendAccelerator.c 	    ZCSG(interned_strings_end)) {
ZCSG              346 ext/opcache/ZendAccelerator.c 	p = (Bucket *) ZCSG(interned_strings_top);
ZCSG              347 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings_top) += ZEND_MM_ALIGNED_SIZE(sizeof(Bucket) + nKeyLength);
ZCSG              356 ext/opcache/ZendAccelerator.c 	p->pNext = ZCSG(interned_strings).arBuckets[nIndex];
ZCSG              361 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings).arBuckets[nIndex] = p;
ZCSG              363 ext/opcache/ZendAccelerator.c 	p->pListLast = ZCSG(interned_strings).pListTail;
ZCSG              364 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings).pListTail = p;
ZCSG              369 ext/opcache/ZendAccelerator.c 	if (!ZCSG(interned_strings).pListHead) {
ZCSG              370 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings).pListHead = p;
ZCSG              373 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings).nNumOfElements++;
ZCSG              482 ext/opcache/ZendAccelerator.c 	ZCSG(restart_in_progress) = 1;
ZCSG              488 ext/opcache/ZendAccelerator.c 	ZCSG(restart_in_progress) = 0;
ZCSG              493 ext/opcache/ZendAccelerator.c 	ZCSG(restart_in_progress) = 0;
ZCSG              502 ext/opcache/ZendAccelerator.c 	if (ZCSG(restart_in_progress)) {
ZCSG              511 ext/opcache/ZendAccelerator.c 			ZCSG(restart_in_progress) = 0;
ZCSG              573 ext/opcache/ZendAccelerator.c 	ZCSG(force_restart_time) = 0;
ZCSG              590 ext/opcache/ZendAccelerator.c 			ZCSG(force_restart_time) = time(NULL); /* restore forced restart request */
ZCSG              629 ext/opcache/ZendAccelerator.c 		&& ZCSG(force_restart_time)
ZCSG              630 ext/opcache/ZendAccelerator.c 		&& time(NULL) >= ZCSG(force_restart_time)) {
ZCSG              956 ext/opcache/ZendAccelerator.c 			    (ZCG(counted) || ZCSG(accelerator_enabled)) &&
ZCSG              957 ext/opcache/ZendAccelerator.c 			    !zend_accel_hash_find(&ZCSG(include_paths), ZCG(include_path), ZCG(include_path_len) + 1) &&
ZCSG              958 ext/opcache/ZendAccelerator.c 			    !zend_accel_hash_is_full(&ZCSG(include_paths))) {
ZCSG              963 ext/opcache/ZendAccelerator.c 				ZCG(include_path_key) = zend_accel_hash_find(&ZCSG(include_paths), ZCG(include_path), ZCG(include_path_len) + 1);
ZCSG              967 ext/opcache/ZendAccelerator.c 				} else if (!zend_accel_hash_is_full(&ZCSG(include_paths))) {
ZCSG              973 ext/opcache/ZendAccelerator.c 						key[ZCG(include_path_len) + 1] = 'A' + ZCSG(include_paths).num_entries;
ZCSG              975 ext/opcache/ZendAccelerator.c 						zend_accel_hash_update(&ZCSG(include_paths), key, ZCG(include_path_len) + 1, 0, ZCG(include_path_key));
ZCSG             1056 ext/opcache/ZendAccelerator.c 	if (!ZCG(enabled) || !accel_startup_ok || !ZCSG(accelerator_enabled) || accelerator_shm_read_lock(TSRMLS_C) != SUCCESS) {
ZCSG             1070 ext/opcache/ZendAccelerator.c 	persistent_script = zend_accel_hash_find(&ZCSG(hash), realpath, strlen(realpath) + 1);
ZCSG             1089 ext/opcache/ZendAccelerator.c 						zend_accel_hash_is_full(&ZCSG(hash)) ? ACCEL_RESTART_HASH : ACCEL_RESTART_OOM;
ZCSG             1107 ext/opcache/ZendAccelerator.c 	if (!zend_accel_hash_find(&ZCSG(hash), key, key_length + 1)) {
ZCSG             1108 ext/opcache/ZendAccelerator.c 		if (zend_accel_hash_is_full(&ZCSG(hash))) {
ZCSG             1116 ext/opcache/ZendAccelerator.c 				if (zend_accel_hash_update(&ZCSG(hash), new_key, key_length + 1, 1, bucket)) {
ZCSG             1143 ext/opcache/ZendAccelerator.c 	if (zend_accel_hash_is_full(&ZCSG(hash))) {
ZCSG             1154 ext/opcache/ZendAccelerator.c 	bucket = zend_accel_hash_find_entry(&ZCSG(hash), new_persistent_script->full_path, new_persistent_script->full_path_len + 1);
ZCSG             1201 ext/opcache/ZendAccelerator.c 	bucket = zend_accel_hash_update(&ZCSG(hash), new_persistent_script->full_path, new_persistent_script->full_path_len + 1, 0, new_persistent_script);
ZCSG             1210 ext/opcache/ZendAccelerator.c 			if (zend_accel_hash_update(&ZCSG(hash), key, key_length + 1, 1, bucket)) {
ZCSG             1321 ext/opcache/ZendAccelerator.c 		ZCSG(blacklist_misses)++;
ZCSG             1352 ext/opcache/ZendAccelerator.c 			ZCSG(blacklist_misses)++;
ZCSG             1461 ext/opcache/ZendAccelerator.c 		(!ZCG(counted) && !ZCSG(accelerator_enabled)) ||
ZCSG             1463 ext/opcache/ZendAccelerator.c 	    (ZCSG(restart_in_progress) && accel_restart_is_active(TSRMLS_C)) ||
ZCSG             1509 ext/opcache/ZendAccelerator.c 		persistent_script = zend_accel_hash_find(&ZCSG(hash), key, key_length + 1);
ZCSG             1539 ext/opcache/ZendAccelerator.c 			    (bucket = zend_accel_hash_find_entry(&ZCSG(hash), file_handle->opened_path, strlen(file_handle->opened_path) + 1)) != NULL) {
ZCSG             1574 ext/opcache/ZendAccelerator.c 						zend_accel_hash_is_full(&ZCSG(hash)) ? ACCEL_RESTART_HASH : ACCEL_RESTART_OOM;
ZCSG             1599 ext/opcache/ZendAccelerator.c 						zend_accel_hash_is_full(&ZCSG(hash)) ? ACCEL_RESTART_HASH : ACCEL_RESTART_OOM;
ZCSG             1613 ext/opcache/ZendAccelerator.c 		ZCSG(misses)++;
ZCSG             1616 ext/opcache/ZendAccelerator.c 		if (ZSMMG(memory_exhausted) || ZCSG(restart_pending)) {
ZCSG             1637 ext/opcache/ZendAccelerator.c 		ZCSG(hits)++; /* TBFixed: may lose one hit */
ZCSG             1640 ext/opcache/ZendAccelerator.c 		InterlockedIncrement(&ZCSG(hits));
ZCSG             1804 ext/opcache/ZendAccelerator.c 	    (ZCG(counted) || ZCSG(accelerator_enabled)) &&
ZCSG             1806 ext/opcache/ZendAccelerator.c 	    !ZCSG(restart_in_progress)) {
ZCSG             1833 ext/opcache/ZendAccelerator.c 				    (persistent_script = zend_accel_hash_find(&ZCSG(hash), (char*)filename, filename_len + 1)) != NULL &&
ZCSG             1849 ext/opcache/ZendAccelerator.c 					(persistent_script = zend_accel_hash_find(&ZCSG(hash), key, key_length + 1)) != NULL &&
ZCSG             1864 ext/opcache/ZendAccelerator.c 				    (bucket = zend_accel_hash_find_entry(&ZCSG(hash), resolved_path, strlen(resolved_path) + 1)) != NULL) {
ZCSG             1900 ext/opcache/ZendAccelerator.c 	    (ZCG(counted) || ZCSG(accelerator_enabled)) &&
ZCSG             1902 ext/opcache/ZendAccelerator.c 	    !ZCSG(restart_in_progress)) {
ZCSG             1941 ext/opcache/ZendAccelerator.c 				    (persistent_script = zend_accel_hash_find(&ZCSG(hash), (char*)filename, filename_len + 1)) != NULL &&
ZCSG             1965 ext/opcache/ZendAccelerator.c 	    (ZCG(counted) || ZCSG(accelerator_enabled)) &&
ZCSG             1967 ext/opcache/ZendAccelerator.c 	    !ZCSG(restart_in_progress)) {
ZCSG             1994 ext/opcache/ZendAccelerator.c 			    (bucket = zend_accel_hash_find_entry(&ZCSG(hash), (char*)filename, filename_len + 1)) != NULL) {
ZCSG             2012 ext/opcache/ZendAccelerator.c 				(persistent_script = zend_accel_hash_find(&ZCSG(hash), key, key_length + 1)) != NULL &&
ZCSG             2026 ext/opcache/ZendAccelerator.c 			    (bucket = zend_accel_hash_find_entry(&ZCSG(hash), resolved_path, strlen(resolved_path) + 1)) != NULL) {
ZCSG             2058 ext/opcache/ZendAccelerator.c 	ZCSG(hits) = 0;
ZCSG             2059 ext/opcache/ZendAccelerator.c 	ZCSG(misses) = 0;
ZCSG             2060 ext/opcache/ZendAccelerator.c 	ZCSG(blacklist_misses) = 0;
ZCSG             2062 ext/opcache/ZendAccelerator.c 	ZCSG(restart_pending) = 0;
ZCSG             2063 ext/opcache/ZendAccelerator.c 	ZCSG(force_restart_time) = 0;
ZCSG             2091 ext/opcache/ZendAccelerator.c 	if (ZCSG(restart_pending)) {
ZCSG             2093 ext/opcache/ZendAccelerator.c 		if (ZCSG(restart_pending) != 0) { /* check again, to ensure that the cache wasn't already cleaned by another process */
ZCSG             2096 ext/opcache/ZendAccelerator.c 				ZCSG(restart_pending) = 0;
ZCSG             2097 ext/opcache/ZendAccelerator.c 				switch ZCSG(restart_reason) {
ZCSG             2099 ext/opcache/ZendAccelerator.c 						ZCSG(oom_restarts)++;
ZCSG             2102 ext/opcache/ZendAccelerator.c 						ZCSG(hash_restarts)++;
ZCSG             2105 ext/opcache/ZendAccelerator.c 						ZCSG(manual_restarts)++;
ZCSG             2111 ext/opcache/ZendAccelerator.c 				zend_accel_hash_clean(&ZCSG(hash));
ZCSG             2114 ext/opcache/ZendAccelerator.c 				if (ZCSG(include_paths).num_entries > 1) {
ZCSG             2115 ext/opcache/ZendAccelerator.c 					ZCSG(include_paths).num_entries = 1;
ZCSG             2116 ext/opcache/ZendAccelerator.c 					ZCSG(include_paths).num_direct_entries = 1;
ZCSG             2117 ext/opcache/ZendAccelerator.c 					memset(ZCSG(include_paths).hash_table, 0, sizeof(zend_accel_hash_entry*) * ZCSG(include_paths).max_num_entries);
ZCSG             2118 ext/opcache/ZendAccelerator.c 					ZCSG(include_paths).hash_table[zend_inline_hash_func(ZCSG(include_paths).hash_entries[0].key, ZCSG(include_paths).hash_entries[0].key_length) % ZCSG(include_paths).max_num_entries] = &ZCSG(include_paths).hash_entries[0];
ZCSG             2128 ext/opcache/ZendAccelerator.c 				ZCSG(accelerator_enabled) = ZCSG(cache_status_before_restart);
ZCSG             2129 ext/opcache/ZendAccelerator.c 				ZCSG(last_restart_time) = ZCG(request_time);
ZCSG             2430 ext/opcache/ZendAccelerator.c 	zend_accel_hash_init(&ZCSG(hash), ZCG(accel_directives).max_accelerated_files);
ZCSG             2431 ext/opcache/ZendAccelerator.c 	zend_accel_hash_init(&ZCSG(include_paths), 32);
ZCSG             2435 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings_start) = ZCSG(interned_strings_end) = NULL;
ZCSG             2437 ext/opcache/ZendAccelerator.c 	zend_hash_init(&ZCSG(interned_strings), (ZCG(accel_directives).interned_strings_buffer * 1024 * 1024) / (sizeof(Bucket) + sizeof(Bucket*) + 8 /* average string length */), NULL, NULL, 1);
ZCSG             2439 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings).nTableMask = ZCSG(interned_strings).nTableSize - 1;
ZCSG             2440 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings).arBuckets = zend_shared_alloc(ZCSG(interned_strings).nTableSize * sizeof(Bucket *));
ZCSG             2441 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings_start) = zend_shared_alloc((ZCG(accel_directives).interned_strings_buffer * 1024 * 1024));
ZCSG             2442 ext/opcache/ZendAccelerator.c 		if (!ZCSG(interned_strings).arBuckets || !ZCSG(interned_strings_start)) {
ZCSG             2446 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings_end)   = ZCSG(interned_strings_start) + (ZCG(accel_directives).interned_strings_buffer * 1024 * 1024);
ZCSG             2447 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings_top)   = ZCSG(interned_strings_start);
ZCSG             2451 ext/opcache/ZendAccelerator.c 		CG(interned_strings_start) = ZCSG(interned_strings_start);
ZCSG             2452 ext/opcache/ZendAccelerator.c 		CG(interned_strings_end) = ZCSG(interned_strings_end);
ZCSG             2474 ext/opcache/ZendAccelerator.c 	ZCSG(oom_restarts) = 0;
ZCSG             2475 ext/opcache/ZendAccelerator.c 	ZCSG(hash_restarts) = 0;
ZCSG             2476 ext/opcache/ZendAccelerator.c 	ZCSG(manual_restarts) = 0;
ZCSG             2478 ext/opcache/ZendAccelerator.c 	ZCSG(accelerator_enabled) = 1;
ZCSG             2479 ext/opcache/ZendAccelerator.c 	ZCSG(start_time) = zend_accel_get_time();
ZCSG             2480 ext/opcache/ZendAccelerator.c 	ZCSG(last_restart_time) = 0;
ZCSG             2481 ext/opcache/ZendAccelerator.c 	ZCSG(restart_in_progress) = 0;
ZCSG             2562 ext/opcache/ZendAccelerator.c 			CG(interned_strings_start) = ZCSG(interned_strings_start);
ZCSG             2563 ext/opcache/ZendAccelerator.c 			CG(interned_strings_end) = ZCSG(interned_strings_end);
ZCSG             2615 ext/opcache/ZendAccelerator.c 			ZCG(include_path_key) = zend_accel_hash_find(&ZCSG(include_paths), ZCG(include_path), ZCG(include_path_len) + 1);
ZCSG             2617 ext/opcache/ZendAccelerator.c 			    !zend_accel_hash_is_full(&ZCSG(include_paths))) {
ZCSG             2624 ext/opcache/ZendAccelerator.c 					key[ZCG(include_path_len) + 1] = 'A' + ZCSG(include_paths).num_entries;
ZCSG             2626 ext/opcache/ZendAccelerator.c 					zend_accel_hash_update(&ZCSG(include_paths), key, ZCG(include_path_len) + 1, 0, ZCG(include_path_key));
ZCSG             2714 ext/opcache/ZendAccelerator.c 	if (ZCSG(restart_pending)) {
ZCSG             2721 ext/opcache/ZendAccelerator.c 	ZCSG(restart_pending) = 1;
ZCSG             2722 ext/opcache/ZendAccelerator.c 	ZCSG(restart_reason) = reason;
ZCSG             2723 ext/opcache/ZendAccelerator.c 	ZCSG(cache_status_before_restart) = ZCSG(accelerator_enabled);
ZCSG             2724 ext/opcache/ZendAccelerator.c 	ZCSG(accelerator_enabled) = 0;
ZCSG             2727 ext/opcache/ZendAccelerator.c 		ZCSG(force_restart_time) = zend_accel_get_time() + ZCG(accel_directives).force_restart_timeout;
ZCSG             2729 ext/opcache/ZendAccelerator.c 		ZCSG(force_restart_time) = 0;
ZCSG             2756 ext/opcache/ZendAccelerator.c 		if (ZCSG(restart_in_progress)) {
ZCSG             2780 ext/opcache/ZendAccelerator.c 	    ZCSG(accelerator_enabled) &&
ZCSG             2782 ext/opcache/ZendAccelerator.c 	    !ZCSG(restart_pending)) {
ZCSG              320 ext/opcache/zend_accelerator_module.c 		persistent_script = zend_accel_hash_find(&ZCSG(hash), filename, filename_len + 1);
ZCSG              329 ext/opcache/zend_accelerator_module.c 		persistent_script = zend_accel_hash_find(&ZCSG(hash), key, key_length + 1);
ZCSG              422 ext/opcache/zend_accelerator_module.c 	if (ZCG(enabled) && accel_startup_ok && (ZCG(counted) || ZCSG(accelerator_enabled))) {
ZCSG              427 ext/opcache/zend_accelerator_module.c 	if (ZCG(enabled) && accel_startup_ok && ZCSG(accelerator_enabled) && ZCG(accel_directives).optimization_level) {
ZCSG              439 ext/opcache/zend_accelerator_module.c 			snprintf(buf, sizeof(buf), "%ld", ZCSG(hits));
ZCSG              441 ext/opcache/zend_accelerator_module.c 			snprintf(buf, sizeof(buf), "%ld", ZSMMG(memory_exhausted)?ZCSG(misses):ZCSG(misses)-ZCSG(blacklist_misses));
ZCSG              450 ext/opcache/zend_accelerator_module.c 			if (ZCSG(interned_strings_start) && ZCSG(interned_strings_end) && ZCSG(interned_strings_top)) {
ZCSG              451 ext/opcache/zend_accelerator_module.c 				snprintf(buf, sizeof(buf), "%ld", ZCSG(interned_strings_top) - ZCSG(interned_strings_start));
ZCSG              453 ext/opcache/zend_accelerator_module.c 				snprintf(buf, sizeof(buf), "%ld", ZCSG(interned_strings_end) - ZCSG(interned_strings_top));
ZCSG              457 ext/opcache/zend_accelerator_module.c 			snprintf(buf, sizeof(buf), "%ld", ZCSG(hash).num_direct_entries);
ZCSG              459 ext/opcache/zend_accelerator_module.c 			snprintf(buf, sizeof(buf), "%ld", ZCSG(hash).num_entries);
ZCSG              461 ext/opcache/zend_accelerator_module.c 			snprintf(buf, sizeof(buf), "%ld", ZCSG(hash).max_num_entries);
ZCSG              463 ext/opcache/zend_accelerator_module.c 			snprintf(buf, sizeof(buf), "%ld", ZCSG(oom_restarts));
ZCSG              465 ext/opcache/zend_accelerator_module.c 			snprintf(buf, sizeof(buf), "%ld", ZCSG(hash_restarts));
ZCSG              467 ext/opcache/zend_accelerator_module.c 			snprintf(buf, sizeof(buf), "%ld", ZCSG(manual_restarts));
ZCSG              505 ext/opcache/zend_accelerator_module.c 	if (!ZCG(enabled) || !accel_startup_ok || !ZCSG(accelerator_enabled) || accelerator_shm_read_lock(TSRMLS_C) != SUCCESS) {
ZCSG              511 ext/opcache/zend_accelerator_module.c 	for (i = 0; i<ZCSG(hash).max_num_entries; i++) {
ZCSG              512 ext/opcache/zend_accelerator_module.c 		for (cache_entry = ZCSG(hash).hash_table[i]; cache_entry; cache_entry = cache_entry->next) {
ZCSG              572 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(return_value, "opcache_enabled", ZCG(enabled) && (ZCG(counted) || ZCSG(accelerator_enabled)));
ZCSG              574 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(return_value, "restart_pending", ZCSG(restart_pending));
ZCSG              575 ext/opcache/zend_accelerator_module.c 	add_assoc_bool(return_value, "restart_in_progress", ZCSG(restart_in_progress));
ZCSG              587 ext/opcache/zend_accelerator_module.c 	if (ZCSG(interned_strings_start) && ZCSG(interned_strings_end) && ZCSG(interned_strings_top)) {
ZCSG              592 ext/opcache/zend_accelerator_module.c 		add_assoc_long(interned_strings_usage, "buffer_size", ZCSG(interned_strings_end) - ZCSG(interned_strings_start));
ZCSG              593 ext/opcache/zend_accelerator_module.c 		add_assoc_long(interned_strings_usage, "used_memory", ZCSG(interned_strings_top) - ZCSG(interned_strings_start));
ZCSG              594 ext/opcache/zend_accelerator_module.c 		add_assoc_long(interned_strings_usage, "free_memory", ZCSG(interned_strings_end) - ZCSG(interned_strings_top));
ZCSG              595 ext/opcache/zend_accelerator_module.c 		add_assoc_long(interned_strings_usage, "number_of_strings", ZCSG(interned_strings).nNumOfElements);
ZCSG              603 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "num_cached_scripts", ZCSG(hash).num_direct_entries);
ZCSG              604 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "num_cached_keys",    ZCSG(hash).num_entries);
ZCSG              605 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "max_cached_keys",    ZCSG(hash).max_num_entries);
ZCSG              606 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "hits", ZCSG(hits));
ZCSG              607 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "start_time", ZCSG(start_time));
ZCSG              608 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "last_restart_time", ZCSG(last_restart_time));
ZCSG              609 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "oom_restarts", ZCSG(oom_restarts));
ZCSG              610 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "hash_restarts", ZCSG(hash_restarts));
ZCSG              611 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "manual_restarts", ZCSG(manual_restarts));
ZCSG              612 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "misses", ZSMMG(memory_exhausted)?ZCSG(misses):ZCSG(misses)-ZCSG(blacklist_misses));
ZCSG              613 ext/opcache/zend_accelerator_module.c 	add_assoc_long(statistics, "blacklist_misses", ZCSG(blacklist_misses));
ZCSG              614 ext/opcache/zend_accelerator_module.c 	reqs = ZCSG(hits)+ZCSG(misses);
ZCSG              615 ext/opcache/zend_accelerator_module.c 	add_assoc_double(statistics, "blacklist_miss_ratio", reqs?(((double) ZCSG(blacklist_misses))/reqs)*100.0:0);
ZCSG              616 ext/opcache/zend_accelerator_module.c 	add_assoc_double(statistics, "opcache_hit_rate", reqs?(((double) ZCSG(hits))/reqs)*100.0:0);
ZCSG              721 ext/opcache/zend_accelerator_module.c 	if (!ZCG(enabled) || !accel_startup_ok || !ZCSG(accelerator_enabled)) {
ZCSG              764 ext/opcache/zend_accelerator_module.c 	if (!ZCG(enabled) || !accel_startup_ok || !ZCSG(accelerator_enabled)) {
ZCSG              804 ext/opcache/zend_accelerator_module.c 	if (!ZCG(enabled) || !accel_startup_ok || !ZCSG(accelerator_enabled)) {