Searched refs:iprh_tmp (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
398 iprh_tmp = (struct ip6_reass_helper*)q->payload;
399 if (iprh->start < iprh_tmp->start) {
401 if (iprh->end > iprh_tmp->start) {
426 } else if (iprh->start == iprh_tmp->start) {
431 } else if (iprh->start < iprh_tmp->end) {
440 if (iprh_prev->end != iprh_tmp->start) {
447 q = iprh_tmp->next_pbuf;
448 iprh_prev = iprh_tmp;
495 iprh_tmp
[all...]
/barrelfish-master/lib/lwip/src/core/ipv4/
H A Dip_frag.c333 struct ip_reass_helper *iprh, *iprh_tmp, *iprh_prev = NULL; local
357 iprh_tmp = (struct ip_reass_helper *) q->payload;
358 if (iprh->start < iprh_tmp->start) {
365 || (iprh->end > iprh_tmp->start)) {
376 } else if (iprh->start == iprh_tmp->start) {
380 } else if (iprh->start < iprh_tmp->end) {
387 if (iprh_prev->end != iprh_tmp->start) {
394 q = iprh_tmp->next_pbuf;
395 iprh_prev = iprh_tmp;
/barrelfish-master/lib/lwip2/src/core/ipv4/
H A Dip4_frag.c341 struct ip_reass_helper *iprh, *iprh_tmp, *iprh_prev=NULL; local
365 iprh_tmp = (struct ip_reass_helper*)q->payload;
366 if (iprh->start < iprh_tmp->start) {
372 if ((iprh->start < iprh_prev->end) || (iprh->end > iprh_tmp->start)) {
383 } else if (iprh->start == iprh_tmp->start) {
387 } else if (iprh->start < iprh_tmp->end) {
394 if (iprh_prev->end != iprh_tmp->start) {
401 q = iprh_tmp->next_pbuf;
402 iprh_prev = iprh_tmp;

Completed in 80 milliseconds