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