Home
last modified time | relevance | path

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

/openbmc/qemu/tests/unit/
H A Dtest-hbitmap.c210 count += hbitmap_get(data->hb, i); in hbitmap_test_check_get()
211 g_assert_cmpint(hbitmap_get(data->hb, i), ==, val != 0); in hbitmap_test_check_get()
483 g_assert(hbitmap_get(data->hb, 0)); in hbitmap_test_check_boundary_bits()
484 g_assert(hbitmap_get(data->hb, size - 1)); in hbitmap_test_check_boundary_bits()
691 int is_set = hbitmap_get(data->hb, i); in hbitmap_test_serialize_range()
828 bool first_bit = hbitmap_get(data->hb, start); in test_hbitmap_next_x_check_range()
831 next < end && hbitmap_get(data->hb, next) == first_bit; in test_hbitmap_next_x_check_range()
940 for (off2 = offset; off2 < end && !hbitmap_get(data->hb, off2); off2++) { in test_hbitmap_next_dirty_area_check_limited()
945 hbitmap_get(data->hb, off2 + len2)); len2++) in test_hbitmap_next_dirty_area_check_limited()
/openbmc/qemu/include/qemu/
H A Dhbitmap.h147 bool hbitmap_get(const HBitmap *hb, uint64_t item);
/openbmc/qemu/block/
H A Ddirty-bitmap.c480 return hbitmap_get(bitmap->bitmap, offset); in bdrv_dirty_bitmap_get_locked()
/openbmc/qemu/util/
H A Dhbitmap.c617 bool hbitmap_get(const HBitmap *hb, uint64_t item) in hbitmap_get() function