interned_strings_start  981 ext/opcache/ZendAccelerator.c 						char *res = zend_print_long_to_buf(buf + sizeof(buf) - 1, ZSTR_VAL(str) - ZCSG(interned_strings_start));
interned_strings_start 1020 ext/opcache/ZendAccelerator.c 						char *res = zend_print_long_to_buf(buf + sizeof(buf) - 1, ZSTR_VAL(str) - ZCSG(interned_strings_start));
interned_strings_start 2410 ext/opcache/ZendAccelerator.c 	ZCSG(interned_strings_start) = ZCSG(interned_strings_end) = NULL;
interned_strings_start 2418 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings_start) = zend_shared_alloc((ZCG(accel_directives).interned_strings_buffer * 1024 * 1024));
interned_strings_start 2419 ext/opcache/ZendAccelerator.c 		if (!data || !ZCSG(interned_strings_start)) {
interned_strings_start 2426 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings_end)   = ZCSG(interned_strings_start) + (ZCG(accel_directives).interned_strings_buffer * 1024 * 1024);
interned_strings_start 2427 ext/opcache/ZendAccelerator.c 		ZCSG(interned_strings_top)   = ZCSG(interned_strings_start);
interned_strings_start  292 ext/opcache/ZendAccelerator.h 	char           *interned_strings_start;
interned_strings_start  341 ext/opcache/ZendAccelerator.h 	((char*)(str) >= ZCSG(interned_strings_start) && (char*)(str) < ZCSG(interned_strings_end))
interned_strings_start  484 ext/opcache/zend_accelerator_module.c 			if (ZCSG(interned_strings_start) && ZCSG(interned_strings_end) && ZCSG(interned_strings_top)) {
interned_strings_start  485 ext/opcache/zend_accelerator_module.c 				snprintf(buf, sizeof(buf), "%pd", ZCSG(interned_strings_top) - ZCSG(interned_strings_start));
interned_strings_start  626 ext/opcache/zend_accelerator_module.c 	if (ZCSG(interned_strings_start) && ZCSG(interned_strings_end) && ZCSG(interned_strings_top)) {
interned_strings_start  630 ext/opcache/zend_accelerator_module.c 		add_assoc_long(&interned_strings_usage, "buffer_size", ZCSG(interned_strings_end) - ZCSG(interned_strings_start));
interned_strings_start  631 ext/opcache/zend_accelerator_module.c 		add_assoc_long(&interned_strings_usage, "used_memory", ZCSG(interned_strings_top) - ZCSG(interned_strings_start));