Lines Matching defs:tp2
576 type_t *tp2 = block_zero_alloc(sizeof(*tp2), "type");
577 tp2->t_tspec = t;
578 tp2->t_subt = tp;
579 return tp2;
590 type_t *tp2 = expr_zero_alloc(sizeof(*tp2), "type");
591 tp2->t_tspec = t;
592 tp2->t_subt = tp;
593 return tp2;
1512 /* Return a type based on tp1, with added qualifiers from tp2. */
1514 merge_qualifiers(type_t *tp1, const type_t *tp2)
1518 lint_assert(tp2->t_tspec == PTR);
1521 bool c2 = tp2->t_subt->t_const;
1523 bool v2 = tp2->t_subt->t_volatile;