Lines Matching refs:gc_threshold
197 (GC_G(first_unused) < GC_G(gc_threshold))
219 uint32_t gc_threshold; /* GC collection threshold */ member
439 gc_globals->gc_threshold = GC_INVALID; in gc_globals_ctor_ex()
504 GC_G(gc_threshold) = GC_THRESHOLD_DEFAULT; in gc_enable()
561 if (GC_G(gc_threshold) < GC_THRESHOLD_MAX) { in gc_adjust_threshold()
562 new_threshold = GC_G(gc_threshold) + GC_THRESHOLD_STEP; in gc_adjust_threshold()
570 GC_G(gc_threshold) = new_threshold; in gc_adjust_threshold()
573 } else if (GC_G(gc_threshold) > GC_THRESHOLD_DEFAULT) { in gc_adjust_threshold()
574 new_threshold = GC_G(gc_threshold) - GC_THRESHOLD_STEP; in gc_adjust_threshold()
578 GC_G(gc_threshold) = new_threshold; in gc_adjust_threshold()
1631 status->threshold = GC_G(gc_threshold); in zend_gc_get_status()