Lines Matching refs:tmp
504 u32_t tmp; in vj_uncompress_tcp() local
550 tmp = lwip_ntohl(th->ackno) + i; in vj_uncompress_tcp()
551 th->ackno = lwip_htonl(tmp); in vj_uncompress_tcp()
552 tmp = lwip_ntohl(th->seqno) + i; in vj_uncompress_tcp()
553 th->seqno = lwip_htonl(tmp); in vj_uncompress_tcp()
559 tmp = lwip_ntohl(th->seqno) + lwip_ntohs(IPH_LEN(&cs->cs_ip)) - cs->cs_hlen; in vj_uncompress_tcp()
560 th->seqno = lwip_htonl(tmp); in vj_uncompress_tcp()
605 tmp = n0->tot_len - vjlen + cs->cs_hlen; in vj_uncompress_tcp()
606 IPH_LEN_SET(&cs->cs_ip, lwip_htons((u16_t)tmp)); in vj_uncompress_tcp()
614 for (tmp = 0; hlen > 0; hlen -= 2) { in vj_uncompress_tcp()
615 tmp += (*bp++).v; in vj_uncompress_tcp()
617 tmp = (tmp & 0xffff) + (tmp >> 16); in vj_uncompress_tcp()
618 tmp = (tmp & 0xffff) + (tmp >> 16); in vj_uncompress_tcp()
619 IPH_CHKSUM_SET(&cs->cs_ip, (u16_t)(~tmp)); in vj_uncompress_tcp()