Home
last modified time | relevance | path

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

/f-stack/app/nginx-1.16.1/src/http/modules/
H A Dngx_http_limit_req_module.c175 excess = 0; in ngx_http_limit_req_handler()
216 n, rc, excess / 1000, excess % 1000); in ngx_http_limit_req_handler()
234 excess / 1000, excess % 1000, in ngx_http_limit_req_handler()
260 excess = 0; in ngx_http_limit_req_handler()
409 excess = lr->excess - ctx->rate * ms / 1000 + 1000; in ngx_http_limit_req_lookup()
422 lr->excess = excess; in ngx_http_limit_req_lookup()
467 lr->excess = 0; in ngx_http_limit_req_lookup()
500 excess = *ep; in ngx_http_limit_req_account()
530 excess = lr->excess - ctx->rate * ms / 1000 + 1000; in ngx_http_limit_req_account()
540 lr->excess = excess; in ngx_http_limit_req_account()
[all …]
/f-stack/freebsd/contrib/openzfs/lib/libtpool/
H A Dthread_pool.c562 int excess; in tpool_resume() local
573 excess = tpool->tp_njobs - tpool->tp_idle; in tpool_resume()
574 while (excess-- > 0 && tpool->tp_current < tpool->tp_maximum) { in tpool_resume()