Searched refs:backoff (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-current/sys/contrib/dev/iwlwifi/cfg/
H A D7000.c74 {.temperature = 112, .backoff = 300},
75 {.temperature = 113, .backoff = 800},
76 {.temperature = 114, .backoff = 1500},
77 {.temperature = 115, .backoff = 3000},
78 {.temperature = 116, .backoff = 5000},
79 {.temperature = 117, .backoff = 10000},
197 {.pwr = 1600, .backoff = 0},
198 {.pwr = 1300, .backoff = 467},
199 {.pwr = 900, .backoff = 1900},
200 {.pwr = 800, .backoff
[all...]
H A D9000.c63 {.temperature = 110, .backoff = 200},
64 {.temperature = 111, .backoff = 600},
65 {.temperature = 112, .backoff = 1200},
66 {.temperature = 113, .backoff = 2000},
67 {.temperature = 114, .backoff = 4000},
H A D8000.c67 {.temperature = 110, .backoff = 200},
68 {.temperature = 111, .backoff = 600},
69 {.temperature = 112, .backoff = 1200},
70 {.temperature = 113, .backoff = 2000},
71 {.temperature = 114, .backoff = 4000},
/freebsd-current/sys/contrib/ck/include/spinlock/
H A Ddec.h106 ck_backoff_t backoff = CK_BACKOFF_INITIALIZER; local
115 ck_backoff_eb(&backoff);
H A Dcas.h92 ck_backoff_t backoff = CK_BACKOFF_INITIALIZER; local
95 ck_backoff_eb(&backoff);
H A Dticket.h125 ck_backoff_t backoff; local
139 backoff = (request - position) & CK_SPINLOCK_TICKET_MASK;
140 backoff <<= c;
141 ck_backoff_eb(&backoff);
244 ck_backoff_t backoff; local
254 backoff = request - position;
255 backoff <<= c;
263 ck_backoff_eb(&backoff);
H A Dfas.h93 ck_backoff_t backoff = CK_BACKOFF_INITIALIZER; local
96 ck_backoff_eb(&backoff);
/freebsd-current/contrib/unbound/testdata/ip_ratelimit.tdir/
H A Dip_ratelimit.conf16 ip-ratelimit-backoff: yes
/freebsd-current/contrib/dma/
H A Ddma.c318 unsigned int backoff = MIN_RETRY, slept; local
350 for (slept = 0; slept < backoff;) {
353 backoff = MIN_RETRY;
357 if (slept >= backoff) {
358 /* pick the next backoff between [1.5, 2.5) times backoff */
359 backoff = backoff + backoff / 2 + random() % backoff;
[all...]
/freebsd-current/sys/contrib/dev/iwlwifi/mvm/
H A Dtt.c366 void iwl_mvm_tt_tx_backoff(struct iwl_mvm *mvm, u32 backoff) argument
371 .data = { &backoff, },
374 backoff = max(backoff, mvm->thermal_throttle.min_backoff);
377 IWL_DEBUG_TEMP(mvm, "Set Thermal Tx backoff to: %u\n",
378 backoff);
379 mvm->thermal_throttle.tx_backoff = backoff;
381 IWL_ERR(mvm, "Failed to change Thermal Tx backoff\n");
441 params->tx_backoff[i].backoff);
471 {.temperature = 112, .backoff
[all...]
H A Dops.c666 const struct iwl_pwr_tx_backoff *backoff = mvm->cfg->pwr_tx_backoffs; local
669 if (!backoff)
674 while (backoff->pwr) {
675 if (dflt_pwr_limit >= backoff->pwr)
676 return backoff->backoff;
678 backoff++;
/freebsd-current/contrib/unbound/services/cache/
H A Dinfra.h389 * @param backoff: if backoff is enabled.
397 size_t namelen, time_t timenow, int backoff, struct query_info* qinfo,
420 * @param backoff: if backoff is enabled.
424 size_t namelen, time_t timenow, int backoff);
427 * When backoff is enabled look for the maximum in the whole RATE_WINDOW. */
428 int infra_rate_max(void* data, time_t now, int backoff);
441 * @param backoff: if backoff i
[all...]
H A Dinfra.c1031 int infra_rate_max(void* data, time_t now, int backoff) argument
1036 if(backoff) {
1051 size_t namelen, time_t timenow, int backoff, struct query_info* qinfo,
1068 int premax = infra_rate_max(entry->data, timenow, backoff);
1071 max = infra_rate_max(entry->data, timenow, backoff);
1118 size_t namelen, time_t timenow, int backoff)
1134 max = infra_rate_max(entry->data, timenow, backoff);
1193 int has_cookie, int backoff, struct sldns_buffer* buffer)
1205 int premax = infra_rate_max(entry->data, timenow, backoff);
1208 max = infra_rate_max(entry->data, timenow, backoff);
1050 infra_ratelimit_inc(struct infra_cache* infra, uint8_t* name, size_t namelen, time_t timenow, int backoff, struct query_info* qinfo, struct comm_reply* replylist) argument
1117 infra_ratelimit_exceeded(struct infra_cache* infra, uint8_t* name, size_t namelen, time_t timenow, int backoff) argument
1191 infra_ip_ratelimit_inc(struct infra_cache* infra, struct sockaddr_storage* addr, socklen_t addrlen, time_t timenow, int has_cookie, int backoff, struct sldns_buffer* buffer) argument
[all...]
/freebsd-current/sys/ofed/drivers/infiniband/ulp/ipoib/
H A Dipoib_multicast.c92 mcast->backoff = 1;
359 mcast->backoff = 1;
386 mcast->backoff *= 2;
387 if (mcast->backoff > IPOIB_MAX_BACKOFF_SECONDS)
388 mcast->backoff = IPOIB_MAX_BACKOFF_SECONDS;
397 mcast->backoff * HZ);
458 mcast->backoff *= 2;
459 if (mcast->backoff > IPOIB_MAX_BACKOFF_SECONDS)
460 mcast->backoff = IPOIB_MAX_BACKOFF_SECONDS;
466 mcast->backoff * H
[all...]
H A Dipoib.h190 unsigned long backoff; member in struct:ipoib_mcast
/freebsd-current/sys/netinet/cc/
H A Dcc_chd.c115 /* The previous qdly that caused cwnd to backoff. */
157 * Probabilistic backoff function. Returns 1 if we should backoff or 0
243 int backoff, new_measurement, qdly, rtt; local
248 backoff = qdly = 0;
267 backoff = should_backoff(qdly,
276 if (backoff) {
278 * Update shadow_w before delay based backoff.
489 "IU", "Per RTT maximum backoff probability as a percentage");
H A Dcc_cdg.c501 * Using a negative exponential probabilistic backoff so that sources with
503 * probability of backoff over time.
506 * V_cdg_exp_backoff_scale is the average qtrend for the exponential backoff.
511 int backoff, idx; local
514 backoff = (qtrend > ((MAXGRAD * V_cdg_exp_backoff_scale) << D_P_E));
516 if (!backoff) {
525 backoff = (prng32() < p);
528 return (backoff);
610 /* Probabilistic backoff with respect to gradient. */
698 "(on delay-based backoff,
[all...]
/freebsd-current/sys/contrib/ck/src/
H A Dck_hp.c314 ck_backoff_t backoff = CK_BACKOFF_INITIALIZER; local
319 ck_backoff_eb(&backoff);
/freebsd-current/usr.bin/login/
H A Dlogin.c159 int retries, backoff; local
255 * Get "login-retries" & "login-backoff" from default class
264 backoff = login_getcapnum(lc, "login-backoff",
363 * backing off after 'backoff' (3) attempts.
365 if (++cnt > backoff) {
370 sleep((u_int)((cnt - backoff) * 5));
/freebsd-current/crypto/heimdal/lib/kadm5/
H A Dipropd_slave.c506 time_t backoff; local
604 krb5_appdefault_time(context, config_name, NULL, "reconnect-backoff",
605 10, &backoff);
731 reconnect += backoff;
/freebsd-current/sys/contrib/dev/iwlwifi/
H A Diwl-config.h163 * Tx-backoff threshold
165 * @backoff: The tx-backoff in uSec
169 u32 backoff; member in struct:iwl_tt_tx_backoff
184 * @tx_backoff: Array of thresholds for tx-backoff , in ascending order.
188 * @support_tx_backoff: Support tx-backoff?
228 /* Tx-backoff power threshold
230 * @backoff: The tx-backoff in uSec
234 u32 backoff; member in struct:iwl_pwr_tx_backoff
[all...]
/freebsd-current/contrib/unbound/services/
H A Dauthzone.h300 /** increasing backoff for failures */
301 time_t backoff; member in struct:auth_nextprobe
H A Dauthzone.c87 /* auth transfer max backoff for failed transfers and probes */
6924 xfr->task_nextprobe->backoff = 0;
6926 if(xfr->task_nextprobe->backoff == 0)
6927 xfr->task_nextprobe->backoff = 3;
6928 else xfr->task_nextprobe->backoff *= 2;
6929 if(xfr->task_nextprobe->backoff > AUTH_TRANSFER_MAX_BACKOFF)
6930 xfr->task_nextprobe->backoff =
6942 xfr->task_nextprobe->backoff;
6951 xfr->task_nextprobe->backoff;
/freebsd-current/contrib/llvm-project/openmp/runtime/src/
H A Dkmp_lock.cpp103 kmp_backoff_t backoff = __kmp_spin_backoff_params; local
106 __kmp_spin_backoff(&backoff);
109 __kmp_spin_backoff(&backoff);
2645 // Runtime's default backoff parameters
2665 // Truncated binary exponential backoff function
2872 kmp_backoff_t backoff = __kmp_spin_backoff_params; local
2875 __kmp_spin_backoff(&backoff);
/freebsd-current/contrib/unbound/daemon/
H A Dremote.c2901 /** if backoff is enabled */
2902 int backoff; member in struct:ratelimit_list_arg
2916 int max = infra_rate_max(d, a->now, a->backoff);
2934 int max = infra_rate_max(d, a->now, a->backoff);
2952 a.backoff = worker->env.cfg->ratelimit_backoff;
2971 a.backoff = worker->env.cfg->ip_ratelimit_backoff;

Completed in 471 milliseconds

12