Home | History | Annotate | Download | only in openbsd-compat

Lines Matching refs:best

119 	struct { int base, len; } best, cur;
132 best.base = -1;
142 if (best.base == -1 || cur.len > best.len)
143 best = cur;
149 if (best.base == -1 || cur.len > best.len)
150 best = cur;
152 if (best.base != -1 && best.len < 2)
153 best.base = -1;
161 /* Are we inside the best run of 0x00's? */
162 if (best.base != -1 && i >= best.base &&
163 i < (best.base + best.len)) {
164 if (i == best.base) {
178 if (i == 6 && best.base == 0 &&
179 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) {
191 if (best.base != -1 && (best.base + best.len) == (IN6ADDRSZ / INT16SZ)) {