Lines Matching refs:bits
918 long *bits; in kasan_bitops_generic() local
927 bits = kzalloc(sizeof(*bits) + 1, GFP_KERNEL); in kasan_bitops_generic()
928 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, bits); in kasan_bitops_generic()
935 kasan_bitops_modify(test, BITS_PER_LONG, bits); in kasan_bitops_generic()
940 kasan_bitops_test_and_modify(test, BITS_PER_LONG + BITS_PER_BYTE, bits); in kasan_bitops_generic()
942 kfree(bits); in kasan_bitops_generic()
947 long *bits; in kasan_bitops_tags() local
953 bits = kzalloc(48, GFP_KERNEL); in kasan_bitops_tags()
954 KUNIT_ASSERT_NOT_ERR_OR_NULL(test, bits); in kasan_bitops_tags()
957 kasan_bitops_modify(test, BITS_PER_LONG, (void *)bits + 48); in kasan_bitops_tags()
958 kasan_bitops_test_and_modify(test, BITS_PER_LONG + BITS_PER_BYTE, (void *)bits + 48); in kasan_bitops_tags()
960 kfree(bits); in kasan_bitops_tags()