Lines Matching defs:start
28 * @start: beginning 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,
37 unsigned int start_word = start / 32;
42 if (end <= start)
45 if (start % 32) {
46 mask = ethnl_upper_bits(start);
80 * @start: beginning of the interval
83 * Return: true if there is non-zero bit with index @start <= i < @end,
86 static bool ethnl_bitmap32_not_zero(const u32 *map, unsigned int start,
89 unsigned int start_word = start / 32;
93 if (end <= start)
96 if (start % 32) {
97 mask = ethnl_upper_bits(start);