Home
last modified time | relevance | path

Searched refs:high (Results 1 – 12 of 12) 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()
604 high = try; in tfrc_binsearch()
608 return high; in tfrc_binsearch()
/net/dsa/
Dmv88e6xxx.c510 u32 high; in mv88e6xxx_get_ethtool_stats() local
514 mv88e6xxx_stats_read(ds, s->reg + 1, &high); in mv88e6xxx_get_ethtool_stats()
516 high = 0; in mv88e6xxx_get_ethtool_stats()
518 data[i] = (((u64)high) << 32) | low; in mv88e6xxx_get_ethtool_stats()
/net/ipv4/
Dinet_connection_sock.c40 void inet_get_local_port_range(int *low, int *high) in inet_get_local_port_range() argument
47 *high = sysctl_local_ports.range[1]; 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()
117 if (++rover > high) 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()
DKconfig9 intend to participate in the MBONE, a high bandwidth network on top
240 MBONE, a high bandwidth network on top of the Internet which carries
480 congestion control for high speed network links. It uses a
555 YeAH-TCP is a sender-side high-speed enabled TCP congestion control
557 congestion window. It's design goals target high efficiency,
570 high speed long delay links. It uses round-trip-time to
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()
197 if (low <= snum && snum <= high && in udp_lib_get_port()
/net/tipc/
Dname_table.c200 int high = nseq->first_free - 1; in nameseq_find_subseq() local
203 while (low <= high) { in nameseq_find_subseq()
204 mid = (low + high) / 2; in nameseq_find_subseq()
206 high = mid - 1; in nameseq_find_subseq()
229 int high = nseq->first_free - 1; in nameseq_locate_subseq() local
232 while (low <= high) { in nameseq_locate_subseq()
233 mid = (low + high) / 2; in nameseq_locate_subseq()
235 high = mid - 1; in nameseq_locate_subseq()
/net/dccp/ccids/
DKconfig59 with a small RTT this can mean a high processing load and reduced
/net/atm/
DKconfig8 ATM is a high-speed networking technology for Local Area Networks
/net/netfilter/ipvs/
DKconfig8 IP Virtual Server support will let you build a high-performance
174 from the server set, in order to avoid high degree of replication.
/net/xfrm/
Dxfrm_state.c1508 int xfrm_alloc_spi(struct xfrm_state *x, u32 low, u32 high) in xfrm_alloc_spi() argument
1515 __be32 maxspi = htonl(high); 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/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()
5711 if ((rover < low) || (rover > high)) in sctp_get_port_local()