Home
last modified time | relevance | path

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

/PHP-8.1/Zend/
H A Dzend_gc.c198 (GC_G(first_unused) < GC_G(gc_threshold))
220 uint32_t gc_threshold; /* GC collection threshold */ member
440 gc_globals->gc_threshold = GC_INVALID; in gc_globals_ctor_ex()
505 GC_G(gc_threshold) = GC_THRESHOLD_DEFAULT; in gc_enable()
562 if (GC_G(gc_threshold) < GC_THRESHOLD_MAX) { in gc_adjust_threshold()
563 new_threshold = GC_G(gc_threshold) + GC_THRESHOLD_STEP; in gc_adjust_threshold()
571 GC_G(gc_threshold) = new_threshold; in gc_adjust_threshold()
574 } else if (GC_G(gc_threshold) > GC_THRESHOLD_DEFAULT) { in gc_adjust_threshold()
575 new_threshold = GC_G(gc_threshold) - GC_THRESHOLD_STEP; in gc_adjust_threshold()
579 GC_G(gc_threshold) = new_threshold; in gc_adjust_threshold()
[all …]

Completed in 6 milliseconds