Home
last modified time | relevance | path

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

/PHP-5.6/Zend/
H A Dzend_gc.c162 zv->refcount__gc++; in gc_zval_possible_root()
164 zv->refcount__gc--; in gc_zval_possible_root()
215 zv->refcount__gc++; in gc_zobj_possible_root()
217 zv->refcount__gc--; in gc_zobj_possible_root()
315 pz->refcount__gc++; in zval_scan_black()
344 pz->refcount__gc++; in zobj_scan_black()
358 pz->refcount__gc++; in zobj_scan_black()
422 pz->refcount__gc--; in zval_mark_grey()
464 pz->refcount__gc--; in zobj_mark_grey()
686 pz->refcount__gc++; in zval_collect_white()
[all …]
H A Dzend.h337 zend_uint refcount__gc; member
399 return pz->refcount__gc; in zval_refcount_p()
403 return pz->refcount__gc = rc; in zval_set_refcount_p()
407 return ++pz->refcount__gc; in zval_addref_p()
411 return --pz->refcount__gc; in zval_delref_p()
751 (z)->refcount__gc = 1; \
/PHP-5.6/ext/opcache/
H A DZendAccelerator.h148 #define PZ_REFCOUNT_P(pz) (pz)->refcount__gc
149 #define PZ_SET_REFCOUNT_P(pz, v) (pz)->refcount__gc = (v)
150 #define PZ_ADDREF_P(pz) ++((pz)->refcount__gc)
151 #define PZ_DELREF_P(pz) --((pz)->refcount__gc)
/PHP-5.6/sapi/phpdbg/
H A Dphpdbg_watch.c644 …int removed = ((zval *)oldPtr)->refcount__gc != watch->addr.zv->refcount__gc && !zend_symtable_exi…
646 …int show_ref = ((zval *)oldPtr)->refcount__gc != watch->addr.zv->refcount__gc || ((zval *)oldPtr)-…
658 …phpdbg_writeln("Old refcount: %d; Old is_ref: %d", ((zval *)oldPtr)->refcount__gc, ((zval *)oldPtr…
681 …phpdbg_writeln("New refcount: %d; New is_ref: %d", watch->addr.zv->refcount__gc, watch->addr.zv->i…
/PHP-5.6/
H A D.gdbinit176 printf "(refcount=%d", $zvalue->refcount__gc

Completed in 28 milliseconds