Lines Matching refs:nbytes
65 unsigned int nbytes; /* Number of significant whole bytes */
97 nbytes = prefixlen / 8;
100 if (nbytes > 0) {
101 if (memcmp(pa, pb, nbytes) != 0)
106 INSIST(nbytes < ipabytes);
108 bytea = pa[nbytes];
109 byteb = pb[nbytes];
207 unsigned int nbits, nbytes, ipbytes = 0;
226 nbytes = prefixlen / 8;
229 INSIST(nbytes < ipbytes);
230 if ((p[nbytes] & (0xff>>nbits)) != 0U)
232 nbytes++;
234 if (nbytes < ipbytes && memcmp(p + nbytes, zeros, ipbytes - nbytes) != 0)
241 unsigned int nbits = 0, nbytes = 0, ipbytes = 0, i;
260 nbytes = i;
262 unsigned int c = p[nbytes];
274 *lenp = nbytes * 8 + nbits;