Searched refs:Bitmap (Results 1 - 6 of 6) sorted by relevance

/systemd/src/basic/
H A Dbitmap.h27 typedef struct Bitmap Bitmap; typedef in typeref:struct:Bitmap
29 Bitmap *bitmap_new(void);
31 void bitmap_free(Bitmap *b);
33 int bitmap_ensure_allocated(Bitmap **b);
35 int bitmap_set(Bitmap *b, unsigned n);
36 void bitmap_unset(Bitmap *b, unsigned n);
37 bool bitmap_isset(Bitmap *b, unsigned n);
38 bool bitmap_isclear(Bitmap *b);
39 void bitmap_clear(Bitmap *
[all...]
H A Dbitmap.c31 struct Bitmap { struct
49 Bitmap *bitmap_new(void) {
50 return new0(Bitmap, 1);
53 void bitmap_free(Bitmap *b) {
61 int bitmap_ensure_allocated(Bitmap **b) {
62 Bitmap *a;
78 int bitmap_set(Bitmap *b, unsigned n) {
104 void bitmap_unset(Bitmap *b, unsigned n) {
121 bool bitmap_isset(Bitmap *b, unsigned n) {
138 bool bitmap_isclear(Bitmap *
[all...]
/systemd/src/test/
H A Dtest-bitmap.c23 _cleanup_bitmap_free_ Bitmap *b = NULL, *b2 = NULL;
/systemd/src/resolve/
H A Dresolved-dns-rr.h221 Bitmap *types;
241 Bitmap *types;
H A Dresolved-dns-packet.c621 static int dns_packet_append_types(DnsPacket *p, Bitmap *types, size_t *start) {
1413 static int dns_packet_read_type_window(DnsPacket *p, Bitmap **types, size_t *start) {
1490 static int dns_packet_read_type_windows(DnsPacket *p, Bitmap **types, size_t size, size_t *start) {
H A Dresolved-dns-rr.c751 static char *format_types(Bitmap *types) {

Completed in 1606 milliseconds