Lines Matching refs:new_threshold
626 uint32_t new_threshold; in gc_adjust_threshold() local
634 new_threshold = GC_G(gc_threshold) + GC_THRESHOLD_STEP; in gc_adjust_threshold()
635 if (new_threshold > GC_THRESHOLD_MAX) { in gc_adjust_threshold()
636 new_threshold = GC_THRESHOLD_MAX; in gc_adjust_threshold()
638 if (new_threshold > GC_G(buf_size)) { in gc_adjust_threshold()
641 if (new_threshold <= GC_G(buf_size)) { in gc_adjust_threshold()
642 GC_G(gc_threshold) = new_threshold; in gc_adjust_threshold()
646 new_threshold = GC_G(gc_threshold) - GC_THRESHOLD_STEP; in gc_adjust_threshold()
647 if (new_threshold < GC_THRESHOLD_DEFAULT) { in gc_adjust_threshold()
648 new_threshold = GC_THRESHOLD_DEFAULT; in gc_adjust_threshold()
650 GC_G(gc_threshold) = new_threshold; in gc_adjust_threshold()