Lines Matching refs:best
117 } best, cur; in inet_ntop_v6() local
129 best.base = -1; in inet_ntop_v6()
141 if (best.base == -1 || cur.len > best.len) in inet_ntop_v6()
142 best = cur; in inet_ntop_v6()
146 if ((cur.base != -1) && (best.base == -1 || cur.len > best.len)) in inet_ntop_v6()
147 best = cur; in inet_ntop_v6()
148 if (best.base != -1 && best.len < 2) in inet_ntop_v6()
149 best.base = -1; in inet_ntop_v6()
158 if (best.base != -1 && i >= best.base && i < (best.base + best.len)) in inet_ntop_v6()
160 if (i == best.base) in inet_ntop_v6()
172 if (i == 6 && best.base == 0 && in inet_ntop_v6()
173 (best.len == 6 || (best.len == 5 && words[5] == 0xffff))) in inet_ntop_v6()
188 if (best.base != -1 && (best.base + best.len) == (IN6ADDRSZ / INT16SZ)) in inet_ntop_v6()