Home
last modified time | relevance | path

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

/PHP-5.6/Zend/
H A Dzend_string.c51 CG(interned_strings_top) = CG(interned_strings_start); in zend_interned_strings_init()
110 if (CG(interned_strings_top) + ZEND_MM_ALIGNED_SIZE(sizeof(Bucket) + nKeyLength) >= in zend_new_interned_string_int()
116 p = (Bucket *) CG(interned_strings_top); in zend_new_interned_string_int()
117 CG(interned_strings_top) += ZEND_MM_ALIGNED_SIZE(sizeof(Bucket) + nKeyLength); in zend_new_interned_string_int()
184 CG(interned_strings_snapshot_top) = CG(interned_strings_top); in zend_interned_strings_snapshot_int()
194 CG(interned_strings_top) = CG(interned_strings_snapshot_top); in zend_interned_strings_restore_int()
203 while (p && p->arKey > CG(interned_strings_top)) { in zend_interned_strings_restore_int()
H A Dzend_globals.h147 char *interned_strings_top; member
/PHP-5.6/ext/opcache/
H A Dzend_accelerator_module.c458 if (ZCSG(interned_strings_start) && ZCSG(interned_strings_end) && ZCSG(interned_strings_top)) { in zend_accel_info()
459 snprintf(buf, sizeof(buf), "%ld", ZCSG(interned_strings_top) - ZCSG(interned_strings_start)); in zend_accel_info()
461 snprintf(buf, sizeof(buf), "%ld", ZCSG(interned_strings_end) - ZCSG(interned_strings_top)); in zend_accel_info()
595 if (ZCSG(interned_strings_start) && ZCSG(interned_strings_end) && ZCSG(interned_strings_top)) { in ZEND_FUNCTION()
601 …add_assoc_long(interned_strings_usage, "used_memory", ZCSG(interned_strings_top) - ZCSG(interned_s… in ZEND_FUNCTION()
602 …ng(interned_strings_usage, "free_memory", ZCSG(interned_strings_end) - ZCSG(interned_strings_top)); in ZEND_FUNCTION()
H A DZendAccelerator.h311 char *interned_strings_top; member
H A DZendAccelerator.c296 ZCSG(interned_strings_top) = ZCSG(interned_strings_saved_state).top; in accel_interned_strings_restore_state()
308 ZCSG(interned_strings_saved_state).top = ZCSG(interned_strings_top); in accel_interned_strings_save_state()
342 if (ZCSG(interned_strings_top) + ZEND_MM_ALIGNED_SIZE(sizeof(Bucket) + nKeyLength) >= in accel_new_interned_string()
350 p = (Bucket *) ZCSG(interned_strings_top); in accel_new_interned_string()
351 ZCSG(interned_strings_top) += ZEND_MM_ALIGNED_SIZE(sizeof(Bucket) + nKeyLength); in accel_new_interned_string()
2547 ZCSG(interned_strings_top) = ZCSG(interned_strings_start);

Completed in 26 milliseconds