Lines Matching refs:best
113 } best, cur; in addrtostr6() local
124 best.len = 0; in addrtostr6()
125 best.base = -1; in addrtostr6()
134 if (best.base == -1 || cur.len > best.len) in addrtostr6()
135 best = cur; in addrtostr6()
139 if ((cur.base != -1) && (best.base == -1 || cur.len > best.len)) in addrtostr6()
140 best = cur; in addrtostr6()
141 if (best.base != -1 && best.len < 2) in addrtostr6()
142 best.base = -1; in addrtostr6()
160 if (best.base != -1 && i >= best.base && i < (best.base + best.len)) { in addrtostr6()
161 if (i == best.base) in addrtostr6()
173 if (i == 6 && best.base == 0 && in addrtostr6()
174 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) in addrtostr6()
198 if (best.base != -1 && (best.base + best.len) == (IN6ADDRSZ / INT16SZ)) in addrtostr6()