Home | History | Annotate | Download | only in tcpdump

Lines Matching refs:parts

66 	u_int parts[4];
67 u_int *pp = parts;
104 if (pp >= parts + 3)
117 * Find the number of parts specified.
121 n = pp - parts + 1;
125 * parts[0-2] were set to the first 3 parts of the address;
130 if ((parts[0] | parts[1] | parts[2] | val) > 0xff)
133 * Add the other three parts to val.
135 val |= (parts[0] << 24) | (parts[1] << 16) | (parts[2] << 8);