Home
last modified time | relevance | path

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

/linux/tools/testing/selftests/bpf/libarena/selftests/
H A Dtest_bitmap.bpf.c32 if (!bmp_test_bit(LAST_BIT, bmp)) in test_bitmap_alloc_free()
36 if (bmp_test_bit(LAST_BIT, bmp)) in test_bitmap_alloc_free()
57 if (!bmp_test_bit(0, bmp)) in test_bitmap_bit_ops()
61 if (!bmp_test_bit(MID_BIT, bmp)) in test_bitmap_bit_ops()
65 if (!bmp_test_bit(LAST_BIT, bmp)) in test_bitmap_bit_ops()
68 if (bmp_test_bit(MID_BIT - 1, bmp)) in test_bitmap_bit_ops()
72 if (bmp_test_bit(MID_BIT, bmp)) in test_bitmap_bit_ops()
75 if (!bmp_test_bit(0, bmp)) in test_bitmap_bit_ops()
78 if (!bmp_test_bit(LAST_BIT, bmp)) in test_bitmap_bit_ops()
110 if (bmp_test_bit(ind, bmp)) in test_bitmap_test_and_clear_single()
[all …]
H A Dtest_parallel_bitmap.bpf.c70 if (!bmp_test_bit(bit, bitmap)) in bitmap_test_bit_sequence()
75 if (!bmp_test_bit(bit, bitmap)) in bitmap_test_bit_sequence()
80 if (bmp_test_bit(bit, bitmap)) in bitmap_test_bit_sequence()
87 if (!bmp_test_bit(bit, bitmap)) in bitmap_test_bit_sequence()
91 if (bmp_test_bit(bit, bitmap)) in bitmap_test_bit_sequence()
95 if (!bmp_test_bit(bit, bitmap)) in bitmap_test_bit_sequence()
/linux/tools/testing/selftests/bpf/libarena/include/libarena/
H A Dbitmap.h22 bool bmp_test_bit(u32 bit, struct arena_bitmap __arena *bmp);
/linux/tools/testing/selftests/bpf/libarena/src/
H A Dbitmap.bpf.c50 bool bmp_test_bit(u32 bit, struct arena_bitmap __arena *bmp) in bmp_test_bit() function