Lines Matching defs:mask
181 uint32_t mask;
392 uint32_t mask, nip, router;
472 * mask [one byte, 0..32]
473 * ip [0..4 bytes depending on mask]
484 mask = strtol(++tp, &tp, 10);
488 options_list[count].val = xrealloc(options_list[count].val, options_list[count].len + 1 + mask/8 + 4);
489 memcpy(((uint8_t*)options_list[count].val)+options_list[count].len, &mask, 1);
491 memcpy(((uint8_t*)options_list[count].val)+options_list[count].len, &nip, mask/8);
492 options_list[count].len += mask/8;
1166 unsigned mask = *options;
1168 if (mask > 32) break;
1171 bytes = (mask + 7) / 8;
1180 dest += sprintf(dest, "/%u ", mask);