BITMAP_LAST_WORD_MASK  157 include/linux/bitmap.h 	dst[nlongs - 1] = BITMAP_LAST_WORD_MASK(nbits);
BITMAP_LAST_WORD_MASK  211 include/linux/bitmap.h 		*dst = ~(*src) & BITMAP_LAST_WORD_MASK(nbits);
BITMAP_LAST_WORD_MASK  220 include/linux/bitmap.h 		return ! ((*src1 ^ *src2) & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  229 include/linux/bitmap.h 		return ((*src1 & *src2) & BITMAP_LAST_WORD_MASK(nbits)) != 0;
BITMAP_LAST_WORD_MASK  238 include/linux/bitmap.h 		return ! ((*src1 & ~(*src2)) & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  246 include/linux/bitmap.h 		return ! (*src & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  254 include/linux/bitmap.h 		return ! (~(*src) & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  262 include/linux/bitmap.h 		return hweight_long(*src & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  279 include/linux/bitmap.h 		*dst = (*src << n) & BITMAP_LAST_WORD_MASK(nbits);
BITMAP_LAST_WORD_MASK  293 include/linux/cpumask.h #define CPU_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(NR_CPUS)
BITMAP_LAST_WORD_MASK  261 include/linux/nodemask.h #define NODE_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(MAX_NUMNODES)
BITMAP_LAST_WORD_MASK   49 lib/bitmap.c   		if (bitmap[k] & BITMAP_LAST_WORD_MASK(bits))
BITMAP_LAST_WORD_MASK   64 lib/bitmap.c   		if (~bitmap[k] & BITMAP_LAST_WORD_MASK(bits))
BITMAP_LAST_WORD_MASK   80 lib/bitmap.c   		if ((bitmap1[k] ^ bitmap2[k]) & BITMAP_LAST_WORD_MASK(bits))
BITMAP_LAST_WORD_MASK   94 lib/bitmap.c   		dst[k] = ~src[k] & BITMAP_LAST_WORD_MASK(bits);
BITMAP_LAST_WORD_MASK  235 lib/bitmap.c   		if ((bitmap1[k] & bitmap2[k]) & BITMAP_LAST_WORD_MASK(bits))
BITMAP_LAST_WORD_MASK  250 lib/bitmap.c   		if ((bitmap1[k] & ~bitmap2[k]) & BITMAP_LAST_WORD_MASK(bits))
BITMAP_LAST_WORD_MASK  264 lib/bitmap.c   		w += hweight_long(bitmap[k] & BITMAP_LAST_WORD_MASK(bits));