Lines Matching +full:binary +full:- +full:coded
6 * Redistribution and use in source and binary forms, with or without
13 * 2. Redistributions in binary form must reproduce the above copyright
41 #include "netdissect-stdinc.h"
94 * Convert IPv6 binary address into presentation (printable) format.
103 * Keep this in mind if you think this function should have been coded
125 best.base = -1;
127 cur.base = -1;
130 if (cur.base == -1)
133 } else if (cur.base != -1) {
134 if (best.base == -1 || cur.len > best.len)
136 cur.base = -1;
139 if ((cur.base != -1) && (best.base == -1 || cur.len > best.len))
141 if (best.base != -1 && best.len < 2)
142 best.base = -1;
155 space_left--; \
160 if (best.base != -1 && i >= best.base && i < (best.base + best.len)) {
182 space_left -= added_space;
193 space_left -= snprintfed;
198 if (best.base != -1 && (best.base + best.len) == (IN6ADDRSZ / INT16SZ))