Lines Matching refs:tmp
508 u32_t tmp; in vj_uncompress_tcp() local
554 tmp = lwip_ntohl(th->ackno) + i; in vj_uncompress_tcp()
555 th->ackno = lwip_htonl(tmp); in vj_uncompress_tcp()
556 tmp = lwip_ntohl(th->seqno) + i; in vj_uncompress_tcp()
557 th->seqno = lwip_htonl(tmp); in vj_uncompress_tcp()
563 tmp = lwip_ntohl(th->seqno) + lwip_ntohs(IPH_LEN(&cs->cs_ip)) - cs->cs_hlen; in vj_uncompress_tcp()
564 th->seqno = lwip_htonl(tmp); in vj_uncompress_tcp()
609 tmp = n0->tot_len - vjlen + cs->cs_hlen; in vj_uncompress_tcp()
610 IPH_LEN_SET(&cs->cs_ip, lwip_htons((u16_t)tmp)); in vj_uncompress_tcp()
618 for (tmp = 0; hlen > 0; hlen -= 2) { in vj_uncompress_tcp()
619 tmp += (*bp++).v; in vj_uncompress_tcp()
621 tmp = (tmp & 0xffff) + (tmp >> 16); in vj_uncompress_tcp()
622 tmp = (tmp & 0xffff) + (tmp >> 16); in vj_uncompress_tcp()
623 IPH_CHKSUM_SET(&cs->cs_ip, (u16_t)(~tmp)); in vj_uncompress_tcp()