Searched refs:Bitmap (Results 1 – 8 of 8) sorted by relevance
/systemd-251/src/shared/ |
D | bitmap.h | 9 typedef struct Bitmap { struct 12 } Bitmap; typedef 14 Bitmap* bitmap_new(void); 15 Bitmap* bitmap_copy(Bitmap *b); 16 int bitmap_ensure_allocated(Bitmap **b); 17 Bitmap* bitmap_free(Bitmap *b); 19 int bitmap_set(Bitmap *b, unsigned n); 20 void bitmap_unset(Bitmap *b, unsigned n); 21 bool bitmap_isset(const Bitmap *b, unsigned n); 22 bool bitmap_isclear(const Bitmap *b); [all …]
|
D | bitmap.c | 27 Bitmap* bitmap_new(void) { in bitmap_new() 28 return new0(Bitmap, 1); in bitmap_new() 31 Bitmap* bitmap_copy(Bitmap *b) { in bitmap_copy() 32 Bitmap *ret; in bitmap_copy() 46 Bitmap* bitmap_free(Bitmap *b) { in bitmap_free() 54 int bitmap_ensure_allocated(Bitmap **b) { in bitmap_ensure_allocated() 55 Bitmap *a; in bitmap_ensure_allocated() 71 int bitmap_set(Bitmap *b, unsigned n) { in bitmap_set() 97 void bitmap_unset(Bitmap *b, unsigned n) { in bitmap_unset() 114 bool bitmap_isset(const Bitmap *b, unsigned n) { in bitmap_isset() [all …]
|
D | exit-status.h | 88 Bitmap status; 89 Bitmap signal;
|
/systemd-251/src/resolve/ |
D | resolved-dns-rr.h | 210 Bitmap *types; 224 Bitmap *types;
|
D | resolved-dns-packet.c | 676 static int dns_packet_append_types(DnsPacket *p, Bitmap *types, size_t *start) { in dns_packet_append_types() 1524 static int dns_packet_read_type_window(DnsPacket *p, Bitmap **types, size_t *start) { in dns_packet_read_type_window() 1591 static int dns_packet_read_type_windows(DnsPacket *p, Bitmap **types, size_t size, size_t *start) { in dns_packet_read_type_windows()
|
D | resolved-dns-rr.c | 752 static char *format_types(Bitmap *types) { in format_types()
|
/systemd-251/src/test/ |
D | test-bitmap.c | 6 _cleanup_bitmap_free_ Bitmap *b = NULL, *b2 = NULL; in main()
|
/systemd-251/src/core/ |
D | load-fragment.c | 4929 Bitmap *bitmap; in config_parse_set_status()
|