Lines Matching defs:end
29 * @end: end of the interval
32 * Clear @nbits bits of a bitmap with indices @start <= i < @end
34 static void ethnl_bitmap32_clear(u32 *dst, unsigned int start, unsigned int end,
38 unsigned int end_word = end / 32;
42 if (end <= start)
48 mask &= ethnl_lower_bits(end);
68 if (end % 32) {
69 mask = ethnl_lower_bits(end);
81 * @end: end of the interval
83 * Return: true if there is non-zero bit with index @start <= i < @end,
87 unsigned int end)
90 unsigned int end_word = end / 32;
93 if (end <= start)
99 mask &= ethnl_lower_bits(end);
110 if (end % 32 == 0)
112 return map[end_word] & ethnl_lower_bits(end);