Lines Matching +defs:val +defs:length
70 * define for max length of an ip address and port address, the value was
281 int val;
283 for (val = 0, c = *str++; c >= '0' && c <= '9'; c = *str++) {
284 val *= 10;
285 val += c - '0';
288 return (val);
398 * length.
401 grow_netbuf(struct netbuf *nb, size_t length)
405 if (nb->maxlen >= length)
408 newbuf = kmem_zalloc(length, KM_SLEEP);
412 nb->maxlen = (unsigned int)length;