taglinefilesource code
counted272net/inet/tcp.cunsigned long counted;
counted290net/inet/tcp.ccounted = sk->copied_seq+1;  /* Where we are at the moment */
counted301net/inet/tcp.cif (before(counted, skb->h.th->seq))   /* Found a hole so stops here */
counted303net/inet/tcp.csum = skb->len -(counted - skb->h.th->seq);  /* Length - header but start from where we are up to (avoid overlaps) */
counted315net/inet/tcp.ccounted += sum;