Home | History | Annotate | Download | only in compat

Lines Matching refs:best

116 	struct { int base, len; } best, cur;
129 best.base = -1;
139 if (best.base == -1 || cur.len > best.len)
140 best = cur;
146 if (best.base == -1 || cur.len > best.len)
147 best = cur;
149 if (best.base != -1 && best.len < 2)
150 best.base = -1;
158 /* Are we inside the best run of 0x00's? */
159 if (best.base != -1 && i >= best.base &&
160 i < (best.base + best.len)) {
161 if (i == best.base) {
175 if (i == 6 && best.base == 0 &&
176 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
188 if (best.base != -1 && (best.base + best.len) == (IN6ADDRSZ / INT16SZ)) {