Lines Matching refs:bits
668 long *bits = kzalloc(sizeof(*bits) + 1, GFP_KERNEL); in kasan_bitops() local
669 if (!bits) in kasan_bitops()
678 set_bit(BITS_PER_LONG, bits); in kasan_bitops()
681 __set_bit(BITS_PER_LONG, bits); in kasan_bitops()
684 clear_bit(BITS_PER_LONG, bits); in kasan_bitops()
687 __clear_bit(BITS_PER_LONG, bits); in kasan_bitops()
690 clear_bit_unlock(BITS_PER_LONG, bits); in kasan_bitops()
693 __clear_bit_unlock(BITS_PER_LONG, bits); in kasan_bitops()
696 change_bit(BITS_PER_LONG, bits); in kasan_bitops()
699 __change_bit(BITS_PER_LONG, bits); in kasan_bitops()
705 test_and_set_bit(BITS_PER_LONG + BITS_PER_BYTE, bits); in kasan_bitops()
708 __test_and_set_bit(BITS_PER_LONG + BITS_PER_BYTE, bits); in kasan_bitops()
711 test_and_set_bit_lock(BITS_PER_LONG + BITS_PER_BYTE, bits); in kasan_bitops()
714 test_and_clear_bit(BITS_PER_LONG + BITS_PER_BYTE, bits); in kasan_bitops()
717 __test_and_clear_bit(BITS_PER_LONG + BITS_PER_BYTE, bits); in kasan_bitops()
720 test_and_change_bit(BITS_PER_LONG + BITS_PER_BYTE, bits); in kasan_bitops()
723 __test_and_change_bit(BITS_PER_LONG + BITS_PER_BYTE, bits); in kasan_bitops()
726 (void)test_bit(BITS_PER_LONG + BITS_PER_BYTE, bits); in kasan_bitops()
730 clear_bit_unlock_is_negative_byte(BITS_PER_LONG + BITS_PER_BYTE, bits); in kasan_bitops()
732 kfree(bits); in kasan_bitops()