Home
last modified time | relevance | path

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

/php-src/Zend/
H A Dzend_gc.c606 uint32_t new_threshold; in gc_adjust_threshold() local
614 new_threshold = GC_G(gc_threshold) + GC_THRESHOLD_STEP; in gc_adjust_threshold()
615 if (new_threshold > GC_THRESHOLD_MAX) { in gc_adjust_threshold()
616 new_threshold = GC_THRESHOLD_MAX; in gc_adjust_threshold()
618 if (new_threshold > GC_G(buf_size)) { in gc_adjust_threshold()
621 if (new_threshold <= GC_G(buf_size)) { in gc_adjust_threshold()
622 GC_G(gc_threshold) = new_threshold; in gc_adjust_threshold()
626 new_threshold = GC_G(gc_threshold) - GC_THRESHOLD_STEP; in gc_adjust_threshold()
627 if (new_threshold < GC_THRESHOLD_DEFAULT) { in gc_adjust_threshold()
628 new_threshold = GC_THRESHOLD_DEFAULT; in gc_adjust_threshold()
[all …]

Completed in 7 milliseconds