Searched refs:start_offset (Results 1 – 2 of 2) sorted by relevance
| /lib/liblwip/src/include/lwip/ |
| D | pbuf.h | 165 err_t pbuf_fill_chksum(struct pbuf *p, u16_t start_offset, const void *dataptr, 171 u16_t pbuf_memfind(struct pbuf* p, const void* mem, u16_t mem_len, u16_t start_offset);
|
| /lib/liblwip/src/core/ |
| D | pbuf.c | 1042 pbuf_fill_chksum(struct pbuf *p, u16_t start_offset, const void *dataptr, in pbuf_fill_chksum() argument 1053 if ((start_offset >= p->len) || (start_offset + len > p->len)) { in pbuf_fill_chksum() 1057 dst_ptr = ((char*)p->payload) + start_offset; in pbuf_fill_chksum() 1059 if ((start_offset & 1) != 0) { in pbuf_fill_chksum() 1140 pbuf_memfind(struct pbuf* p, const void* mem, u16_t mem_len, u16_t start_offset) in pbuf_memfind() argument 1144 if (p->tot_len >= mem_len + start_offset) { in pbuf_memfind() 1145 for(i = start_offset; i <= max; ) { in pbuf_memfind()
|