Home
last modified time | relevance | path

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

/PHP-7.4/Zend/
H A Dzend_gc.c554 uint32_t new_threshold; in gc_adjust_threshold() local
562 new_threshold = GC_G(gc_threshold) + GC_THRESHOLD_STEP; in gc_adjust_threshold()
563 if (new_threshold > GC_THRESHOLD_MAX) { in gc_adjust_threshold()
564 new_threshold = GC_THRESHOLD_MAX; in gc_adjust_threshold()
566 if (new_threshold > GC_G(buf_size)) { in gc_adjust_threshold()
569 if (new_threshold <= GC_G(buf_size)) { in gc_adjust_threshold()
570 GC_G(gc_threshold) = new_threshold; in gc_adjust_threshold()
574 new_threshold = GC_G(gc_threshold) - GC_THRESHOLD_STEP; in gc_adjust_threshold()
575 if (new_threshold < GC_THRESHOLD_DEFAULT) { in gc_adjust_threshold()
576 new_threshold = GC_THRESHOLD_DEFAULT; in gc_adjust_threshold()
[all …]

Completed in 7 milliseconds