Lines Matching defs:base
105 struct { int base, len; } best, cur;
118 best.base = -1;
120 cur.base = -1;
124 if (cur.base == -1)
125 cur.base = i, cur.len = 1;
129 if (cur.base != -1) {
130 if (best.base == -1 || cur.len > best.len)
132 cur.base = -1;
136 if (cur.base != -1) {
137 if (best.base == -1 || cur.len > best.len)
140 if (best.base != -1 && best.len < 2)
141 best.base = -1;
150 if (best.base != -1 && i >= best.base &&
151 i < (best.base + best.len)) {
152 if (i == best.base) {
166 if (i == 6 && best.base == 0 &&
179 if (best.base != -1 && (best.base + best.len) == (IN6ADDRSZ / INT16SZ)) {