Searched refs:new_threshold (Results 1 – 1 of 1) sorted by relevance
626 uint32_t new_threshold; in gc_adjust_threshold() local634 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()[all …]
Completed in 9 milliseconds