Lines Matching defs:deltaS
181 u_int deltaS, deltaA;
272 deltaS = hlen;
282 (deltaS > 5 &&
283 memcmp(ip + 1, &cs->cs_ip + 1, (deltaS - 5) << 2)) ||
294 deltaS = ntohs(th->th_urp);
295 ENCODEZ(deltaS);
305 deltaS = (uint16_t)(ntohs(th->th_win) - ntohs(oth->th_win));
306 if (deltaS) {
307 ENCODE(deltaS);
319 deltaS = ntohl(th->th_seq) - ntohl(oth->th_seq);
320 if (deltaS) {
321 if (deltaS > 0xffff)
323 ENCODE(deltaS);
352 if (deltaS == deltaA &&
353 deltaS == ntohs(cs->cs_ip.ip_len) - hlen) {
361 if (deltaS == ntohs(cs->cs_ip.ip_len) - hlen) {
369 deltaS = ntohs(ip->ip_id) - ntohs(cs->cs_ip.ip_id);
370 if (deltaS != 1) {
371 ENCODEZ(deltaS);
392 deltaS = cp - new_seq;
396 hlen -= deltaS + 4;
401 hlen -= deltaS + 3;
409 memcpy(cp, new_seq, deltaS);