Home | History | Annotate | Download | only in fortran

Lines Matching defs:st_vec

4145 fill_st_vector (gfc_symtree *st, gfc_symtree **st_vec, unsigned node_cntr)
4150 node_cntr = fill_st_vector (st->left, st_vec, node_cntr);
4151 st_vec[node_cntr++] = st;
4152 node_cntr = fill_st_vector (st->right, st_vec, node_cntr);
4167 gfc_symtree **st_vec;
4172 st_vec = XALLOCAVEC (gfc_symtree *, nodes);
4174 fill_st_vector (st, st_vec, node_cntr);
4180 st_vec[i]->n.sym->mark = 0;
4182 if (!st_vec[i]->n.sym->mark)
4184 (*sym_func) (st_vec[i]->n.sym);
4185 st_vec[i]->n.sym->mark = 1;
4190 (*st_func) (st_vec[i]);