Lines Matching defs:tpp
903 type_t **tpp = &sym->s_type;
905 while (*tpp != NULL) {
906 type_t *tp = *tpp;
922 *tpp = block_derive_type(
923 t == FUNC ? *tpp : (*tpp)->t_subt, PTR);
937 *tpp = gettyp(INT);
948 *tpp = gettyp(INT);
960 *tpp = gettyp(INT);
967 *tpp = gettyp(INT);
977 tpp = &tp->t_subt;
1249 type_t **tpp = &decl->s_type;
1250 lint_assert(*tpp != NULL);
1251 while (*tpp != dcs->d_type) {
1252 tpp = &(*tpp)->t_subt;
1253 lint_assert(*tpp != NULL);
1257 *tpp = block_derive_pointer(dcs->d_type,
1260 tpp = &(*tpp)->t_subt;
1310 type_t **tpp = &decl->s_type;
1311 lint_assert(*tpp != NULL);
1312 while (*tpp != dcs->d_type) {
1313 tpp = &(*tpp)->t_subt;
1314 lint_assert(*tpp != NULL);
1317 *tpp = block_derive_array(dcs->d_type, has_dim, dim);
1442 type_t **tpp = &decl->s_type;
1443 lint_assert(*tpp != NULL);
1444 while (*tpp != dcs->d_enclosing->d_type) {
1445 tpp = &(*tpp)->t_subt;
1446 lint_assert(*tpp != NULL);
1449 *tpp = block_derive_function(dcs->d_enclosing->d_type,