Home | History | Annotate | Download | only in lint1

Lines Matching defs:tp2

597 	type_t *tp2 = block_zero_alloc(sizeof(*tp2), "type");
598 tp2->t_tspec = t;
599 tp2->t_subt = tp;
600 return tp2;
611 type_t *tp2 = expr_zero_alloc(sizeof(*tp2), "type");
612 tp2->t_tspec = t;
613 tp2->t_subt = tp;
614 return tp2;
1554 /* Return a type based on tp1, with added qualifiers from tp2. */
1556 merge_qualifiers(type_t *tp1, const type_t *tp2)
1560 lint_assert(tp2->t_tspec == PTR);
1563 bool c2 = tp2->t_subt->t_const;
1565 bool v2 = tp2->t_subt->t_volatile;