Lines Matching defs:index
37 * @seq: sequence number for this index
38 * @myoff: offset of this index in label area
39 * @mysize: size of this index struct
40 * @otheroff: offset of other index
119 * If the 'best' index is invalid, so is the 'next' index. Otherwise,
120 * the next index is MOD(index+1, 2)
122 static inline int nd_label_next_nsindex(int index)
124 if (index < 0)
127 return (index + 1) % 2;