Home
last modified time | relevance | path

Searched refs:BITMAP_FIRST_WORD_MASK (Results 1 – 4 of 4) sorted by relevance

/linux-4.19.296/lib/
Dfind_bit.c49 tmp &= BITMAP_FIRST_WORD_MASK(start); in _find_next_bit()
172 tmp &= swab(BITMAP_FIRST_WORD_MASK(start)); in _find_next_bit_le()
Dgenalloc.c91 unsigned long mask_to_set = BITMAP_FIRST_WORD_MASK(start); in bitmap_set_ll()
127 unsigned long mask_to_clear = BITMAP_FIRST_WORD_MASK(start); in bitmap_clear_ll()
Dbitmap.c260 unsigned long mask_to_set = BITMAP_FIRST_WORD_MASK(start); in __bitmap_set()
281 unsigned long mask_to_clear = BITMAP_FIRST_WORD_MASK(start); in __bitmap_clear()
/linux-4.19.296/include/linux/
Dbitmap.h204 #define BITMAP_FIRST_WORD_MASK(start) (~0UL << ((start) & (BITS_PER_LONG - 1))) macro