Lines Matching refs:tpp
877 type_t **tpp = &sym->s_type;
879 while (*tpp != NULL) {
880 type_t *tp = *tpp;
897 *tpp = block_derive_type(
898 t == FUNC ? *tpp : (*tpp)->t_subt, PTR);
912 *tpp = gettyp(INT);
923 *tpp = gettyp(INT);
935 *tpp = gettyp(INT);
942 *tpp = gettyp(INT);
952 tpp = &tp->t_subt;
1224 type_t **tpp = &decl->s_type;
1225 lint_assert(*tpp != NULL);
1226 while (*tpp != dcs->d_type) {
1227 tpp = &(*tpp)->t_subt;
1228 lint_assert(*tpp != NULL);
1232 *tpp = block_derive_pointer(dcs->d_type,
1235 tpp = &(*tpp)->t_subt;
1285 type_t **tpp = &decl->s_type;
1286 lint_assert(*tpp != NULL);
1287 while (*tpp != dcs->d_type) {
1288 tpp = &(*tpp)->t_subt;
1289 lint_assert(*tpp != NULL);
1292 *tpp = block_derive_array(dcs->d_type, has_dim, dim);
1417 type_t **tpp = &decl->s_type;
1418 lint_assert(*tpp != NULL);
1419 while (*tpp != dcs->d_enclosing->d_type) {
1420 tpp = &(*tpp)->t_subt;
1421 lint_assert(*tpp != NULL);
1424 *tpp = block_derive_function(dcs->d_enclosing->d_type,