| 92 | } |
| 93 | |
| 94 | static inline void bitmap_copy(bitmap *dst, const bitmap *src, |
| 95 | unsigned long nbits) |
| 96 | { |
| 97 | memcpy(dst, src, bitmap_sizeof(nbits)); |
| 98 | } |
| 99 | |
| 100 | #define BITMAP_DEF_BINOP(_name, _op) \ |
| 101 | static inline void bitmap_##_name(bitmap *dst, bitmap *src1, bitmap *src2, \ |
nothing calls this directly
no test coverage detected