Searched refs:start_offset (Results 1 - 7 of 7) sorted by relevance

/barrelfish-2018-10-04/lib/lwip2/src/barrelfish/
H A Dpbuf_barrelfish.c723 * @param start_offset offset of p->payload where to copy the data to
731 pbuf_fill_chksum(struct pbuf *p, u16_t start_offset, const void *dataptr, argument
742 if ((start_offset >= p->len) || (start_offset + len > p->len)) {
746 dst_ptr = ((char*)p->payload) + start_offset;
748 if ((start_offset & 1) != 0) {
863 * start_offset.
869 * @param start_offset offset into p at which to start searching
873 pbuf_memfind(const struct pbuf* p, const void* mem, u16_t mem_len, u16_t start_offset) argument
877 if (p->tot_len >= mem_len + start_offset) {
[all...]
/barrelfish-2018-10-04/include/lwip2/lwip/
H A Dpbuf.h245 err_t pbuf_fill_chksum(struct pbuf *p, u16_t start_offset, const void *dataptr,
256 u16_t pbuf_memfind(const struct pbuf* p, const void* mem, u16_t mem_len, u16_t start_offset);
/barrelfish-2018-10-04/lib/lwip2/src/core/
H A Dpbuf.c1254 * @param start_offset offset of p->payload where to copy the data to
1262 pbuf_fill_chksum(struct pbuf *p, u16_t start_offset, const void *dataptr, argument
1273 if ((start_offset >= p->len) || (start_offset + len > p->len)) {
1277 dst_ptr = ((char*)p->payload) + start_offset;
1279 if ((start_offset & 1) != 0) {
1394 * start_offset.
1400 * @param start_offset offset into p at which to start searching
1404 pbuf_memfind(const struct pbuf* p, const void* mem, u16_t mem_len, u16_t start_offset) argument
1408 if (p->tot_len >= mem_len + start_offset) {
[all...]
H A Ddns.c647 * @param start_offset offset into p where the name starts
651 dns_compare_name(const char *query, struct pbuf* p, u16_t start_offset) argument
654 u16_t response_offset = start_offset;
/barrelfish-2018-10-04/lib/pcre/
H A Dpcre_dfa_exec.c337 start_offset start offset in the subject string
402 int start_offset,
788 current_subject > start_subject + md->start_offset)))
892 if (ptr == start_subject + start_offset) { ADD_ACTIVE(state_offset + 1, 0); }
3162 start_offset where to start in the subject string
3178 const char *subject, int length, int start_offset, int options, int *offsets,
3183 PCRE_SPTR16 subject, int length, int start_offset, int options, int *offsets,
3188 PCRE_SPTR32 subject, int length, int start_offset, int options, int *offsets,
3217 if (start_offset < 0 || start_offset > lengt
398 internal_dfa_exec( dfa_match_data *md, const pcre_uchar *this_start_code, const pcre_uchar *current_subject, int start_offset, int *offsets, int offsetcount, int *workspace, int wscount, int rlevel) argument
3177 pcre_dfa_exec(const pcre *argument_re, const pcre_extra *extra_data, const char *subject, int length, int start_offset, int options, int *offsets, int offsetcount, int *workspace, int wscount) argument
[all...]
H A Dpcre_exec.c1501 mstart == md->start_subject + md->start_offset)))
2101 if (eptr != md->start_subject + md->start_offset) RRETURN(MATCH_NOMATCH);
6334 start_offset where to start in the subject string
6348 PCRE_SPTR subject, int length, int start_offset, int options, int *offsets,
6353 PCRE_SPTR16 subject, int length, int start_offset, int options, int *offsets,
6358 PCRE_SPTR32 subject, int length, int start_offset, int options, int *offsets,
6379 PCRE_PUCHAR start_match = (PCRE_PUCHAR)subject + start_offset;
6401 start_offset == -999)
6415 if (start_offset < 0 || start_offset > lengt
6347 pcre_exec(const pcre *argument_re, const pcre_extra *extra_data, PCRE_SPTR subject, int length, int start_offset, int options, int *offsets, int offsetcount) argument
[all...]
/barrelfish-2018-10-04/lib/lwip2/src/apps/httpd/
H A Dhttpd.c1774 u16_t start_offset = hdr_len; local
1782 while((q != NULL) && (q->len <= start_offset)) {
1783 start_offset -= q->len;
1788 pbuf_header(q, -(s16_t)start_offset);

Completed in 110 milliseconds