Searched refs:offset_from (Results 1 – 1 of 1) sorted by relevance
988 size_t offset_to = offset, offset_from = 0, len; in pbuf_copy_partial_pbuf() local1003 if ((p_to->len - offset_to) >= (p_from->len - offset_from)) { in pbuf_copy_partial_pbuf()1005 len = p_from->len - offset_from; in pbuf_copy_partial_pbuf()1011 MEMCPY((u8_t *)p_to->payload + offset_to, (u8_t *)p_from->payload + offset_from, len); in pbuf_copy_partial_pbuf()1013 offset_from += len; in pbuf_copy_partial_pbuf()1016 LWIP_ASSERT("offset_from <= p_from->len", offset_from <= p_from->len); in pbuf_copy_partial_pbuf()1017 if (offset_from >= p_from->len) { in pbuf_copy_partial_pbuf()1019 offset_from = 0; in pbuf_copy_partial_pbuf()
Completed in 5 milliseconds