Searched refs:bm2 (Results 1 - 2 of 2) sorted by relevance

/barrelfish-master/include/
H A Dbitmap.h84 bool bitmap_equal(const struct bitmap *bm1, const struct bitmap *bm2);
85 bool bitmap_subset(const struct bitmap *bm1, const struct bitmap *bm2);
86 bool bitmap_disjoint(const struct bitmap *bm1, const struct bitmap *bm2);
87 bool bitmap_intersects(const struct bitmap *bm1, const struct bitmap *bm2);
/barrelfish-master/lib/bitmap/
H A Dbitmap.c524 * \param bm2 the second bitmap
529 bool bitmap_equal(const struct bitmap *bm1, const struct bitmap *bm2) argument
532 if (bm1 == bm2) {
536 if (bm1->nbits != bm2->nbits) {
541 bitmap_bit_t src_bytes = BITMAP_DATA_SIZE(bm2->nbits);
545 if (bm1->data[i] != bm2->data[i]) {
573 * \param bm2 the second bitmap
578 bool bitmap_disjoint(const struct bitmap *bm1, const struct bitmap *bm2) argument
581 bitmap_bit_t src_bytes = BITMAP_DATA_SIZE(bm2->nbits);
585 if (bm1->data[i] & bm2
603 bitmap_intersects(const struct bitmap *bm1, const struct bitmap *bm2) argument
[all...]

Completed in 92 milliseconds