Home
last modified time | relevance | path

Searched refs:interned_strings_top (Results 1 – 5 of 5) sorted by relevance

/PHP-5.5/Zend/
H A Dzend_string.c51 CG(interned_strings_top) = CG(interned_strings_start); in zend_interned_strings_init()
108 if (CG(interned_strings_top) + ZEND_MM_ALIGNED_SIZE(sizeof(Bucket) + nKeyLength) >= in zend_new_interned_string_int()
114 p = (Bucket *) CG(interned_strings_top); in zend_new_interned_string_int()
115 CG(interned_strings_top) += ZEND_MM_ALIGNED_SIZE(sizeof(Bucket) + nKeyLength); in zend_new_interned_string_int()
182 CG(interned_strings_snapshot_top) = CG(interned_strings_top); in zend_interned_strings_snapshot_int()
192 CG(interned_strings_top) = CG(interned_strings_snapshot_top); in zend_interned_strings_restore_int()
201 while (p && p->arKey > CG(interned_strings_top)) { in zend_interned_strings_restore_int()
H A Dzend_globals.h143 char *interned_strings_top; member
/PHP-5.5/ext/opcache/
H A Dzend_accelerator_module.c450 if (ZCSG(interned_strings_start) && ZCSG(interned_strings_end) && ZCSG(interned_strings_top)) { in zend_accel_info()
451 snprintf(buf, sizeof(buf), "%ld", ZCSG(interned_strings_top) - ZCSG(interned_strings_start)); in zend_accel_info()
453 snprintf(buf, sizeof(buf), "%ld", ZCSG(interned_strings_end) - ZCSG(interned_strings_top)); in zend_accel_info()
587 if (ZCSG(interned_strings_start) && ZCSG(interned_strings_end) && ZCSG(interned_strings_top)) { in ZEND_FUNCTION()
593 …add_assoc_long(interned_strings_usage, "used_memory", ZCSG(interned_strings_top) - ZCSG(interned_s… in ZEND_FUNCTION()
594 …ng(interned_strings_usage, "free_memory", ZCSG(interned_strings_end) - ZCSG(interned_strings_top)); in ZEND_FUNCTION()
H A DZendAccelerator.h303 char *interned_strings_top; member
H A DZendAccelerator.c292 ZCSG(interned_strings_top) = ZCSG(interned_strings_saved_state).top; in accel_interned_strings_restore_state()
304 ZCSG(interned_strings_saved_state).top = ZCSG(interned_strings_top); in accel_interned_strings_save_state()
338 if (ZCSG(interned_strings_top) + ZEND_MM_ALIGNED_SIZE(sizeof(Bucket) + nKeyLength) >= in accel_new_interned_string()
346 p = (Bucket *) ZCSG(interned_strings_top); in accel_new_interned_string()
347 ZCSG(interned_strings_top) += ZEND_MM_ALIGNED_SIZE(sizeof(Bucket) + nKeyLength); in accel_new_interned_string()
2447 ZCSG(interned_strings_top) = ZCSG(interned_strings_start);

Completed in 23 milliseconds