Searched refs:iprh_prev (Results 1 - 3 of 3) sorted by relevance

/barrelfish-master/lib/lwip2/src/core/ipv6/
H A Dip6_frag.c262 struct ip6_reass_helper *iprh, *iprh_tmp, *iprh_prev=NULL; local
407 if (iprh_prev != NULL) {
408 if (iprh->start < iprh_prev->end) {
418 if (iprh_prev != NULL) {
420 iprh_prev->next_pbuf = p;
439 if (iprh_prev != NULL) {
440 if (iprh_prev->end != iprh_tmp->start) {
448 iprh_prev = iprh_tmp;
453 if (iprh_prev != NULL) {
457 LWIP_ASSERT("check fragments don't overlap", iprh_prev
[all...]
/barrelfish-master/lib/lwip/src/core/ipv4/
H A Dip_frag.c333 struct ip_reass_helper *iprh, *iprh_tmp, *iprh_prev = NULL; local
361 if (iprh_prev != NULL) {
364 if ((iprh->start < iprh_prev->end)
370 iprh_prev->next_pbuf = new_p;
386 if (iprh_prev != NULL) {
387 if (iprh_prev->end != iprh_tmp->start) {
395 iprh_prev = iprh_tmp;
400 if (iprh_prev != NULL) {
405 iprh_prev->end <= iprh->start);
407 iprh_prev
[all...]
/barrelfish-master/lib/lwip2/src/core/ipv4/
H A Dip4_frag.c341 struct ip_reass_helper *iprh, *iprh_tmp, *iprh_prev=NULL; local
369 if (iprh_prev != NULL) {
372 if ((iprh->start < iprh_prev->end) || (iprh->end > iprh_tmp->start)) {
377 iprh_prev->next_pbuf = new_p;
393 if (iprh_prev != NULL) {
394 if (iprh_prev->end != iprh_tmp->start) {
402 iprh_prev = iprh_tmp;
407 if (iprh_prev != NULL) {
411 LWIP_ASSERT("check fragments don't overlap", iprh_prev->end <= iprh->start);
413 iprh_prev
[all...]

Completed in 28 milliseconds