ALIGN             400 src/libsystemd/sd-bus/bus-message.c         a = ALIGN(sizeof(sd_bus_message)) + ALIGN(extra);
ALIGN             425 src/libsystemd/sd-bus/bus-message.c                 m->creds.label = (char*) m + ALIGN(sizeof(sd_bus_message)) + ALIGN(extra);
ALIGN             495 src/libsystemd/sd-bus/bus-message.c         m = malloc0(ALIGN(sizeof(sd_bus_message)) + sizeof(struct bus_header));
ALIGN             500 src/libsystemd/sd-bus/bus-message.c         m->header = (struct bus_header*) ((uint8_t*) m + ALIGN(sizeof(struct sd_bus_message)));
ALIGN              43 src/resolve/resolved-dns-packet.c         a = PAGE_ALIGN(ALIGN(sizeof(DnsPacket)) + a) - ALIGN(sizeof(DnsPacket));
ALIGN              49 src/resolve/resolved-dns-packet.c         p = malloc0(ALIGN(sizeof(DnsPacket)) + a);
ALIGN             236 src/resolve/resolved-dns-packet.c                         memcpy(p->_data, (uint8_t*) p + ALIGN(sizeof(DnsPacket)), p->size);
ALIGN              96 src/resolve/resolved-dns-packet.h         return ((uint8_t*) p) + ALIGN(sizeof(DnsPacket));
ALIGN             295 src/shared/hashmap.c         if (h->buckets != (struct hashmap_entry**) ((uint8_t*) h + ALIGN(sizeof(Hashmap))))
ALIGN             427 src/shared/hashmap.c         if (h->buckets != (struct hashmap_entry**) ((uint8_t*) h + ALIGN(sizeof(Hashmap))))
ALIGN              98 src/shared/macro.h #define ALIGN_PTR(p) ((void*) ALIGN((unsigned long) p))
ALIGN              58 src/shared/mempool.c                 size = PAGE_ALIGN(ALIGN(sizeof(struct pool)) + n*mp->tile_size);
ALIGN              59 src/shared/mempool.c                 n = (size - ALIGN(sizeof(struct pool))) / mp->tile_size;
ALIGN              74 src/shared/mempool.c         return ((uint8_t*) mp->first_pool) + ALIGN(sizeof(struct pool)) + i*mp->tile_size;