Home
last modified time | relevance | path

Searched refs:initv (Results 1 – 4 of 4) sorted by relevance

/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dsemantics.cc9985 tree declv, tree orig_declv, tree initv, in handle_omp_for_class_iterator() argument
9993 tree init = TREE_VEC_ELT (initv, i); in handle_omp_for_class_iterator()
10326 TREE_VEC_ELT (initv, i) = init; in handle_omp_for_class_iterator()
10342 tree orig_declv, tree initv, tree condv, tree incrv, in finish_omp_for() argument
10352 gcc_assert (TREE_VEC_LENGTH (declv) == TREE_VEC_LENGTH (initv)); in finish_omp_for()
10374 init = TREE_VEC_ELT (initv, i); in finish_omp_for()
10426 TREE_VEC_ELT (initv, i) = init; in finish_omp_for()
10444 if (dependent_omp_for_p (declv, initv, condv, incrv)) in finish_omp_for()
10455 TREE_VEC_ELT (initv, i) in finish_omp_for()
10457 TREE_VEC_ELT (initv, i)); in finish_omp_for()
[all …]
Dpt.cc18106 tree initv, tree condv, tree incrv, tree *clauses, in tsubst_omp_for_iterator() argument
18297 TREE_VEC_ELT (initv, i) = init; in tsubst_omp_for_iterator()
18434 TREE_VEC_ELT (initv, i) = init; in tsubst_omp_for_iterator()
19203 tree declv = NULL_TREE, initv = NULL_TREE, condv = NULL_TREE; in tsubst_expr() local
19221 initv = make_tree_vec (TREE_VEC_LENGTH (OMP_FOR_INIT (t))); in tsubst_expr()
19236 |= tsubst_omp_for_iterator (t, i, declv, orig_declv, initv, in tsubst_expr()
19263 orig_declv, initv, condv, incrv, body, pre_body, in tsubst_expr()
28576 dependent_omp_for_p (tree declv, tree initv, tree condv, tree incrv) in dependent_omp_for_p() argument
28586 tree init = TREE_VEC_ELT (initv, i); in dependent_omp_for_p()
Dparser.cc42429 tree real_decl, initv, condv, incrv, declv, orig_declv; in cp_parser_omp_for_loop() local
42484 initv = make_tree_vec (count); in cp_parser_omp_for_loop()
42711 TREE_VEC_ELT (initv, i) = init; in cp_parser_omp_for_loop()
42797 ret = finish_omp_for (loc_first, code, declv, orig_declv, initv, condv, in cp_parser_omp_for_loop()
DChangeLog-2018985 Handle range for loops. Move orig_declv handling after declv/initv