tag | line | file | source code |
seq1 | 163 | net/tcp/tcp.c | diff (unsigned long seq1, unsigned long seq2) |
seq1 | 166 | net/tcp/tcp.c | d=seq1-seq2; |
seq1 | 130 | net/tcp/tcp.h | before (unsigned long seq1, unsigned long seq2) |
seq1 | 133 | net/tcp/tcp.h | if (seq1 == seq2) return (0); |
seq1 | 134 | net/tcp/tcp.h | if (seq1 < seq2) |
seq1 | 136 | net/tcp/tcp.h | if ((unsigned long)seq2-(unsigned long)seq1 < 32767UL) |
seq1 | 147 | net/tcp/tcp.h | if (seq2 < 4096UL && seq1 > (0xffffffUL - 4096UL)) |
seq1 | 156 | net/tcp/tcp.h | after (unsigned long seq1, unsigned long seq2) |
seq1 | 158 | net/tcp/tcp.h | return (before (seq2, seq1)); |
seq1 | 163 | net/tcp/tcp.h | between (unsigned long seq1, unsigned long seq2, unsigned long seq3) |
seq1 | 165 | net/tcp/tcp.h | return (after (seq1+1, seq2) && before (seq1, seq3+1)); |