Lines Matching defs:nstp
1570 type_t *nstp = expr_dup_type(tp1->t_subt);
1571 nstp->t_const |= c2;
1572 nstp->t_volatile |= v2;
1575 ntp->t_subt = nstp;
3837 should_warn_about_pointer_cast(const type_t *nstp, tspec_t nst,
3842 nstp = nstp->t_subt, nst = nstp->t_tspec;
3847 (struct_starts_with(nstp, ostp) ||
3848 struct_starts_with(ostp, nstp)))
3851 if (is_incomplete(nstp) || is_incomplete(ostp))
3861 const sym_t *nmem = nstp->u.sou->sou_first_member;
3876 const type_t *union_tp = nst == UNION ? nstp : ostp;
3877 nstp;
3883 return nstp->u.sou != ostp->u.sou;
3896 const type_t *nstp = ntp->t_subt;
3899 tspec_t nst = nstp->t_tspec;
3922 if (hflag && alignment(nstp) > alignment(ostp) &&
3924 !(nst == UNION && union_contains(nstp, ostp))) {
3927 alignment(ostp), alignment(nstp));
3930 if (cflag && should_warn_about_pointer_cast(nstp, nst, ostp, ost)) {
3932 warning(247, type_name(ostp), type_name(nstp));