BITMAP_LAST_WORD_MASK  246 include/linux/bitmap.h 		dst[nbits / BITS_PER_LONG] &= BITMAP_LAST_WORD_MASK(nbits);
BITMAP_LAST_WORD_MASK  271 include/linux/bitmap.h 		return (*dst = *src1 & *src2 & BITMAP_LAST_WORD_MASK(nbits)) != 0;
BITMAP_LAST_WORD_MASK  297 include/linux/bitmap.h 		return (*dst = *src1 & ~(*src2) & BITMAP_LAST_WORD_MASK(nbits)) != 0;
BITMAP_LAST_WORD_MASK  321 include/linux/bitmap.h 		return !((*src1 ^ *src2) & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  345 include/linux/bitmap.h 	return !(((*src1 | *src2) ^ *src3) & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  352 include/linux/bitmap.h 		return ((*src1 & *src2) & BITMAP_LAST_WORD_MASK(nbits)) != 0;
BITMAP_LAST_WORD_MASK  361 include/linux/bitmap.h 		return ! ((*src1 & ~(*src2)) & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  369 include/linux/bitmap.h 		return ! (*src & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  377 include/linux/bitmap.h 		return ! (~(*src) & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  385 include/linux/bitmap.h 		return hweight_long(*src & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  421 include/linux/bitmap.h 		*dst = (*src & BITMAP_LAST_WORD_MASK(nbits)) >> shift;
BITMAP_LAST_WORD_MASK  430 include/linux/bitmap.h 		*dst = (*src << shift) & BITMAP_LAST_WORD_MASK(nbits);
BITMAP_LAST_WORD_MASK  891 include/linux/cpumask.h 	[BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS)	\
BITMAP_LAST_WORD_MASK  899 include/linux/cpumask.h 	[BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS)	\
BITMAP_LAST_WORD_MASK  923 include/linux/cpumask.h 	[BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS)	\
BITMAP_LAST_WORD_MASK  929 include/linux/cpumask.h 	[BITS_TO_LONGS(NR_CPUS)-1] = BITMAP_LAST_WORD_MASK(NR_CPUS)	\
BITMAP_LAST_WORD_MASK  305 include/linux/nodemask.h #define NODE_MASK_LAST_WORD BITMAP_LAST_WORD_MASK(MAX_NUMNODES)
BITMAP_LAST_WORD_MASK   55 lib/bitmap.c   		if ((bitmap1[k] ^ bitmap2[k]) & BITMAP_LAST_WORD_MASK(bits))
BITMAP_LAST_WORD_MASK   79 lib/bitmap.c   	return (tmp & BITMAP_LAST_WORD_MASK(bits)) == 0;
BITMAP_LAST_WORD_MASK  106 lib/bitmap.c   	unsigned long mask = BITMAP_LAST_WORD_MASK(nbits);
BITMAP_LAST_WORD_MASK  182 lib/bitmap.c   			   BITMAP_LAST_WORD_MASK(bits));
BITMAP_LAST_WORD_MASK  220 lib/bitmap.c   			   BITMAP_LAST_WORD_MASK(bits));
BITMAP_LAST_WORD_MASK  234 lib/bitmap.c   		if ((bitmap1[k] & bitmap2[k]) & BITMAP_LAST_WORD_MASK(bits))
BITMAP_LAST_WORD_MASK  249 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));
BITMAP_LAST_WORD_MASK  285 lib/bitmap.c   		mask_to_set &= BITMAP_LAST_WORD_MASK(size);
BITMAP_LAST_WORD_MASK  306 lib/bitmap.c   		mask_to_clear &= BITMAP_LAST_WORD_MASK(size);
BITMAP_LAST_WORD_MASK 1210 lib/bitmap.c   		bitmap[(halfwords - 1) / 2] &= BITMAP_LAST_WORD_MASK(nbits);
BITMAP_LAST_WORD_MASK  134 lib/find_bit.c 		unsigned long val = BITMAP_LAST_WORD_MASK(size);
BITMAP_LAST_WORD_MASK  100 lib/genalloc.c 		mask_to_set &= BITMAP_LAST_WORD_MASK(size);
BITMAP_LAST_WORD_MASK  135 lib/genalloc.c 		mask_to_clear &= BITMAP_LAST_WORD_MASK(size);
BITMAP_LAST_WORD_MASK   48 tools/include/linux/bitmap.h 	dst[nlongs - 1] = BITMAP_LAST_WORD_MASK(nbits);
BITMAP_LAST_WORD_MASK   54 tools/include/linux/bitmap.h 		return ! (*src & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK   62 tools/include/linux/bitmap.h 		return ! (~(*src) & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK   70 tools/include/linux/bitmap.h 		return hweight_long(*src & BITMAP_LAST_WORD_MASK(nbits));
BITMAP_LAST_WORD_MASK  147 tools/include/linux/bitmap.h 		return (*dst = *src1 & *src2 & BITMAP_LAST_WORD_MASK(nbits)) != 0;
BITMAP_LAST_WORD_MASK   16 tools/lib/bitmap.c 		w += hweight_long(bitmap[k] & BITMAP_LAST_WORD_MASK(bits));
BITMAP_LAST_WORD_MASK   71 tools/lib/bitmap.c 			   BITMAP_LAST_WORD_MASK(bits));
BITMAP_LAST_WORD_MASK   20 tools/testing/radix-tree/bitmap.c 		mask_to_clear &= BITMAP_LAST_WORD_MASK(size);