Lines Matching full:bitmap
1 /* $OpenBSD: bitmap.c,v 1.9 2017/10/20 01:56:39 djm Exp $ */
24 #include "bitmap.h"
31 struct bitmap { struct
37 struct bitmap * argument
40 struct bitmap *ret; in bitmap_new()
54 bitmap_free(struct bitmap *b) in bitmap_free()
65 bitmap_zero(struct bitmap *b) in bitmap_zero()
72 bitmap_test_bit(struct bitmap *b, u_int n) in bitmap_test_bit()
82 reserve(struct bitmap *b, u_int n) in reserve()
101 bitmap_set_bit(struct bitmap *b, u_int n) in bitmap_set_bit()
117 retop(struct bitmap *b) in retop()
126 bitmap_clear_bit(struct bitmap *b, u_int n) in bitmap_clear_bit()
141 bitmap_nbits(struct bitmap *b) in bitmap_nbits()
162 bitmap_nbytes(struct bitmap *b) in bitmap_nbytes()
168 bitmap_to_string(struct bitmap *b, void *p, size_t l) in bitmap_to_string()
189 bitmap_from_string(struct bitmap *b, const void *p, size_t l) in bitmap_from_string()