HomeSort by: relevance | last modified time | path
    Searched defs:st_vec (Results 1 - 2 of 2) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/fortran/
symbol.cc 4299 fill_st_vector (gfc_symtree *st, gfc_symtree **st_vec, unsigned node_cntr)
4304 node_cntr = fill_st_vector (st->left, st_vec, node_cntr);
4305 st_vec[node_cntr++] = st;
4306 node_cntr = fill_st_vector (st->right, st_vec, node_cntr);
4321 gfc_symtree **st_vec; local
4326 st_vec = XALLOCAVEC (gfc_symtree *, nodes);
4328 fill_st_vector (st, st_vec, node_cntr);
4334 st_vec[i]->n.sym->mark = 0;
4336 if (!st_vec[i]->n.sym->mark)
4338 (*sym_func) (st_vec[i]->n.sym)
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/fortran/
symbol.cc 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; local
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)
    [all...]

Completed in 67 milliseconds