Lines Matching defs:dst
1764 static int type_set_or(type_set_t * dst, const type_set_t * a, const type_set_t * b)
1766 type_set_init(dst);
1768 if (ebitmap_or(&dst->types, &a->types, &b->types)) {
1771 if (ebitmap_or(&dst->negset, &a->negset, &b->negset)) {
1775 dst->flags |= a->flags;
1776 dst->flags |= b->flags;
1781 int type_set_cpy(type_set_t * dst, const type_set_t * src)
1783 type_set_init(dst);
1785 dst->flags = src->flags;
1786 if (ebitmap_cpy(&dst->types, &src->types))
1788 if (ebitmap_cpy(&dst->negset, &src->negset))
1794 int type_set_or_eq(type_set_t * dst, const type_set_t * other)
1799 if (type_set_or(&tmp, dst, other))
1801 type_set_destroy(dst);
1802 ret = type_set_cpy(dst, &tmp);
2759 filename_trans_datum_t **dst, *datum, *first = NULL;
2790 dst = &first;
2797 *dst = datum;
2812 dst = &datum->next;