Lines Matching refs:bitmap
26 struct bitmap;
29 struct bitmap *bitmap_new(void);
32 void bitmap_free(struct bitmap *b);
35 void bitmap_zero(struct bitmap *b);
38 int bitmap_test_bit(struct bitmap *b, u_int n);
41 int bitmap_set_bit(struct bitmap *b, u_int n);
44 void bitmap_clear_bit(struct bitmap *b, u_int n);
47 size_t bitmap_nbits(struct bitmap *b);
50 size_t bitmap_nbytes(struct bitmap *b);
53 int bitmap_to_string(struct bitmap *b, void *p, size_t l);
56 int bitmap_from_string(struct bitmap *b, const void *p, size_t l);