Lines Matching defs:indices
30 * x:indices-1 indices use entry [indices-1]
32 * x:y y+1 use entry [y & (indices-1)]
34 * 0xffff 0x10000 use entry [indices-1]
50 u16 indices;
59 return index <= p->indices && index > 0;
177 for (i = 0; i < p->indices; i++) {
303 index = skb->tc_index & (p->indices - 1);
346 u16 indices;
366 indices = nla_get_u16(tb[TCA_DSMARK_INDICES]);
368 if (hweight32(indices) != 1)
374 if (indices <= DSMARK_EMBEDDED_SZ)
377 p->mv = kmalloc_array(indices, sizeof(*p->mv), GFP_KERNEL);
382 for (i = 0; i < indices; i++) {
386 p->indices = indices;
461 if (nla_put_u16(skb, TCA_DSMARK_INDICES, p->indices))