Searched refs:LWIP_MIN (Results 1 – 13 of 13) sorted by relevance
/external/syslinux/core/lwip/src/netif/ppp/ |
D | randm.c | 130 n = LWIP_MIN(bufLen, RANDPOOLSZ); in avGenRand()
|
D | md5.c | 141 PPPDEBUG(LOG_INFO, ("MD5Update: %u:%.*H\n", inLen, LWIP_MIN(inLen, 20) * 2, inBuf)); in MD5Update()
|
D | auth.c | 757 itime = LWIP_MIN(idle.xmit_idle, idle.recv_idle); in check_idle()
|
D | ppp_oe.c | 395 u16_t error_len = LWIP_MIN(len, sizeof(pppoe_error_tmp)-1); in pppoe_dispatch_disc_pkt()
|
D | ppp.c | 1659 pd, nb->len, LWIP_MIN(nb->len * 2, 40), nb->payload)); in pppInput()
|
D | lcp.c | 1660 ppp_send_config(f->unit, LWIP_MIN(ao->mru, (ho->neg_mru? ho->mru: PPP_MRU)), in lcp_up()
|
/external/syslinux/core/lwip/src/include/lwip/ |
D | def.h | 44 #define LWIP_MIN(x , y) (((x) < (y)) ? (x) : (y)) macro
|
/external/syslinux/core/lwip/src/core/ |
D | pbuf.c | 233 p->len = LWIP_MIN(length, PBUF_POOL_BUFSIZE_ALIGNED - LWIP_MEM_ALIGN_SIZE(offset)); in pbuf_alloc() 267 q->len = LWIP_MIN((u16_t)rem_len, PBUF_POOL_BUFSIZE_ALIGNED); in pbuf_alloc()
|
D | tcp.c | 547 if (TCP_SEQ_GEQ(new_right_edge, pcb->rcv_ann_right_edge + LWIP_MIN((TCP_WND / 2), pcb->mss))) { in tcp_update_rcv_ann_wnd() 817 eff_wnd = LWIP_MIN(pcb->cwnd, pcb->snd_wnd); in tcp_slowtmr() 1491 sendmss = LWIP_MIN(sendmss, mss_s); in tcp_eff_send_mss()
|
D | tcp_out.c | 248 alloc = LWIP_MIN(max_length, LWIP_MEM_ALIGN_SIZE(length + TCP_OVERSIZE)); in tcp_pbuf_prealloc() 908 wnd = LWIP_MIN(pcb->snd_wnd, pcb->cwnd); in tcp_output()
|
D | dns.c | 910 namelen = LWIP_MIN(strlen(name), DNS_MAX_NAME_LENGTH-1); in dns_enqueue()
|
D | dhcp.c | 1402 decode_len = LWIP_MIN(len, 4 * DNS_MAX_SERVERS); in dhcp_parse_reply() 1442 copy_len = LWIP_MIN(decode_len, 4); in dhcp_parse_reply()
|
/external/syslinux/core/lwip/src/api/ |
D | sockets.c | 534 backlog = LWIP_MIN(LWIP_MAX(backlog, 0), 0xff); in lwip_listen()
|