Searched refs:oversize (Results 1 - 3 of 3) sorted by relevance

/external/syslinux/core/lwip/src/core/
H A Dtcp_out.c207 * @param max_length maximum usable size of payload+oversize.
208 * @param oversize pointer to a u16_t that will receive the number of usable tail bytes.
217 u16_t *oversize, struct tcp_pcb *pcb, u8_t apiflags,
257 *oversize = p->len - length;
360 u16_t oversize = 0; local
407 * oversize = pcb->unsent_oversize
442 oversize = pcb->unsent_oversize;
443 if (oversize > 0) {
444 LWIP_ASSERT("inconsistent oversize vs. space", oversize_used <= space);
446 oversize_used = oversize < le
216 tcp_pbuf_prealloc(pbuf_layer layer, u16_t length, u16_t max_length, u16_t *oversize, struct tcp_pcb *pcb, u8_t apiflags, u8_t first_seg) argument
[all...]
/external/ltp/testcases/network/stress/ns-tools/
H A Dns-traffic.h230 u_int32_t bit_change_seed(size_t bitsize, size_t oversize);
H A Dns-common.c223 * oversize: This value controls whether a bit is changed or not
228 u_int32_t bit_change_seed(size_t bitsize, size_t oversize) argument
232 rand_val = rand() / ((RAND_MAX + 1U) / (bitsize + oversize));

Completed in 82 milliseconds