Home
last modified time | relevance | path

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

/external/lib/lwip/core/
A Dpbuf.c854 u16_t offset_to=0, offset_from=0, len; in pbuf_copy() local
867 if ((p_to->len - offset_to) >= (p_from->len - offset_from)) { in pbuf_copy()
869 len = p_from->len - offset_from; in pbuf_copy()
874 MEMCPY((u8_t*)p_to->payload + offset_to, (u8_t*)p_from->payload + offset_from, len); in pbuf_copy()
876 offset_from += len; in pbuf_copy()
878 LWIP_ASSERT("offset_from <= p_from->len", offset_from <= p_from->len); in pbuf_copy()
879 if (offset_from >= p_from->len) { in pbuf_copy()
881 offset_from = 0; in pbuf_copy()

Completed in 54 milliseconds