Searched refs:incr (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/libkern/zlib/
H A Dinftrees.c76 unsigned incr; /* for incrementing code, index */ local
260 incr = 1U << (len - drop);
264 fill -= incr;
269 incr = 1U << (len - 1);
270 while (huff & incr)
271 incr >>= 1;
272 if (incr != 0) {
273 huff &= incr - 1;
274 huff += incr;
341 incr
[all...]
/darwin-on-arm/xnu/bsd/netinet/
H A Dtcp_ledbat.c139 static void update_cwnd(struct tcpcb *tp, uint32_t incr) { argument
150 tp->snd_cwnd += incr;
168 tp->snd_cwnd += incr;
229 u_int32_t incr = 0; local
235 incr = tp->t_maxseg;
238 if (tp->snd_cwnd < tp->snd_wnd && incr > 0) {
239 update_cwnd(tp, incr);
260 register u_int incr = tp->t_maxseg; local
269 incr = 0;
282 tp->snd_nxt == tp->snd_max) ? incr *
[all...]
H A Dtcp_newreno.c233 register u_int incr = tp->t_maxseg; local
246 incr = 0;
259 tp->snd_nxt == tp->snd_max) ? incr * 2 : incr;
261 incr = lmin(acked, abc_lim);
272 incr = max((incr * incr / cw), 1);
274 tp->snd_cwnd = min(cw+incr, TCP_MAXWIN<<tp->snd_scale);
H A Dtcp_subr.c2566 uint32_t incr = 0; local
2584 incr = TIMEVAL_TO_TCPHZ(now);
2585 if (incr > 0) {
2587 tcp_now += incr;
/darwin-on-arm/xnu/bsd/dev/dtrace/
H A Ddtrace.c2066 dtrace_aggregate_quantize(uint64_t *quanta, uint64_t nval, uint64_t incr)
2074 quanta[i] += incr;
2081 quanta[i - 1] += incr;
2086 quanta[DTRACE_QUANTIZE_NBUCKETS - 1] += incr;
2094 dtrace_aggregate_lquantize(uint64_t *lquanta, uint64_t nval, uint64_t incr)
2109 lquanta[0] += incr;
2116 lquanta[level + 1] += incr;
2123 lquanta[levels + 1] += incr;

Completed in 50 milliseconds