Home
last modified time | relevance | path

Searched refs:low (Results 1 – 14 of 14) sorted by relevance

/net/dccp/ccids/lib/
Dtfrc_equation.c599 u32 try, low = 0, high = TFRC_CALC_X_ARRSIZE - 1; in tfrc_binsearch() local
601 while (low < high) { in tfrc_binsearch()
602 try = (low + high) / 2; in tfrc_binsearch()
606 low = try + 1; in tfrc_binsearch()
/net/ipv4/
Dinet_connection_sock.c40 void inet_get_local_port_range(int *low, int *high) in inet_get_local_port_range() argument
46 *low = sysctl_local_ports.range[0]; in inet_get_local_port_range()
101 int remaining, rover, low, high; in inet_csk_get_port() local
103 inet_get_local_port_range(&low, &high); in inet_csk_get_port()
104 remaining = (high - low) + 1; in inet_csk_get_port()
105 rover = net_random() % remaining + low; in inet_csk_get_port()
118 rover = low; in inet_csk_get_port()
Dinet_hashtables.c425 int i, remaining, low, high, port; in __inet_hash_connect() local
431 inet_get_local_port_range(&low, &high); in __inet_hash_connect()
432 remaining = (high - low) + 1; in __inet_hash_connect()
436 port = low + (i + offset) % remaining; in __inet_hash_connect()
Dudp.c169 int low, high, remaining; in udp_lib_get_port() local
174 inet_get_local_port_range(&low, &high); in udp_lib_get_port()
175 remaining = (high - low) + 1; in udp_lib_get_port()
178 first = (((u64)rand * remaining) >> 32) + low; in udp_lib_get_port()
197 if (low <= snum && snum <= high && in udp_lib_get_port()
DKconfig559 keeping network elements load as low as possible.
/net/tipc/
Dname_table.c199 int low = 0; in nameseq_find_subseq() local
203 while (low <= high) { in nameseq_find_subseq()
204 mid = (low + high) / 2; in nameseq_find_subseq()
208 low = mid + 1; in nameseq_find_subseq()
228 int low = 0; in nameseq_locate_subseq() local
232 while (low <= high) { in nameseq_locate_subseq()
233 mid = (low + high) / 2; in nameseq_locate_subseq()
237 low = mid + 1; in nameseq_locate_subseq()
241 return low; in nameseq_locate_subseq()
/net/bluetooth/
DKconfig9 Bluetooth is low-cost, low-power, short-range wireless technology.
/net/dsa/
Dmv88e6xxx.c509 u32 low; in mv88e6xxx_get_ethtool_stats() local
512 mv88e6xxx_stats_read(ds, s->reg, &low); in mv88e6xxx_get_ethtool_stats()
518 data[i] = (((u64)high) << 32) | low; in mv88e6xxx_get_ethtool_stats()
/net/dcb/
DKconfig12 requirements (highly reliable, no drops vs. best effort vs. low
/net/wireless/
Dwext.c1541 memcpy(&(spydata->spy_thr_low), &(threshold->low), in iw_handler_set_thrspy()
1568 memcpy(&(threshold->low), &(spydata->spy_thr_low), in iw_handler_get_thrspy()
1596 memcpy(&(threshold.low), &(spydata->spy_thr_low), in iw_send_thrspy_event()
/net/irda/
DKconfig60 bool "Fast RRs (low latency)"
/net/xfrm/
Dxfrm_state.c1508 int xfrm_alloc_spi(struct xfrm_state *x, u32 low, u32 high) in xfrm_alloc_spi() argument
1514 __be32 minspi = htonl(low); in xfrm_alloc_spi()
1536 for (h=0; h<high-low+1; h++) { in xfrm_alloc_spi()
1537 spi = low + net_random()%(high-low+1); in xfrm_alloc_spi()
/net/ax25/
DKconfig29 use a low speed TNC (a Terminal Node Controller acts as a kind of
/net/sctp/
Dsocket.c5702 int low, high, remaining, index; in sctp_get_port_local() local
5705 inet_get_local_port_range(&low, &high); in sctp_get_port_local()
5706 remaining = (high - low) + 1; in sctp_get_port_local()
5707 rover = net_random() % remaining + low; in sctp_get_port_local()
5711 if ((rover < low) || (rover > high)) in sctp_get_port_local()
5712 rover = low; in sctp_get_port_local()