Lines Matching refs:wait
134 unsigned int *wait) in increase_sleep_time() argument
139 if (*wait == gc_th->no_gc_sleep_time) in increase_sleep_time()
142 if ((long long)*wait + (long long)min_time > (long long)max_time) in increase_sleep_time()
143 *wait = max_time; in increase_sleep_time()
145 *wait += min_time; in increase_sleep_time()
149 unsigned int *wait) in decrease_sleep_time() argument
153 if (*wait == gc_th->no_gc_sleep_time) in decrease_sleep_time()
154 *wait = gc_th->max_sleep_time; in decrease_sleep_time()
156 if ((long long)*wait - (long long)min_time < (long long)min_time) in decrease_sleep_time()
157 *wait = min_time; in decrease_sleep_time()
159 *wait -= min_time; in decrease_sleep_time()