Lines Matching defs:base
119 struct { int base, len; } best, cur;
132 best.base = -1;
133 cur.base = -1;
136 if (cur.base == -1)
137 cur.base = i, cur.len = 1;
141 if (cur.base != -1) {
142 if (best.base == -1 || cur.len > best.len)
144 cur.base = -1;
148 if (cur.base != -1) {
149 if (best.base == -1 || cur.len > best.len)
152 if (best.base != -1 && best.len < 2)
153 best.base = -1;
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 &&
191 if (best.base != -1 && (best.base + best.len) == (IN6ADDRSZ / INT16SZ)) {