Home
last modified time | relevance | path

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

/lib/mbedtls/external/mbedtls/tests/scripts/
A Dtcp_client.pl60 my $start_offset = 0;
61 while ($start_offset < length($expected_data)) {
67 if (($actual_data ^ substr($expected_data, $start_offset)) =~ /[^\000]/) {
70 ord(substr($expected_data, $start_offset + $-[0], 1)),
71 $start_offset + $-[0]);
74 $start_offset += length($actual_data);
/lib/lwip/lwip/src/core/
A Dpbuf.c1365 pbuf_fill_chksum(struct pbuf *p, u16_t start_offset, const void *dataptr, in pbuf_fill_chksum() argument
1376 if ((start_offset >= p->len) || (start_offset + len > p->len)) { in pbuf_fill_chksum()
1380 dst_ptr = ((char *)p->payload) + start_offset; in pbuf_fill_chksum()
1382 if ((start_offset & 1) != 0) { in pbuf_fill_chksum()
1507 pbuf_memfind(const struct pbuf *p, const void *mem, u16_t mem_len, u16_t start_offset) in pbuf_memfind() argument
1511 if (p->tot_len >= mem_len + start_offset) { in pbuf_memfind()
1512 for (i = start_offset; i <= max_cmp_start; i++) { in pbuf_memfind()
A Ddns.c670 dns_compare_name(const char *query, struct pbuf *p, u16_t start_offset) in dns_compare_name() argument
673 u16_t response_offset = start_offset; in dns_compare_name()
/lib/lwip/lwip/src/include/lwip/
A Dpbuf.h308 err_t pbuf_fill_chksum(struct pbuf *p, u16_t start_offset, const void *dataptr,
319 u16_t pbuf_memfind(const struct pbuf* p, const void* mem, u16_t mem_len, u16_t start_offset);
/lib/lwip/lwip/src/apps/http/
A Dhttpd.c1848 u16_t start_offset = hdr_len; local
1856 while ((q != NULL) && (q->len <= start_offset)) {
1857 start_offset -= q->len;
1862 pbuf_remove_header(q, start_offset);

Completed in 33 milliseconds