| /src/external/gpl3/gcc/dist/libgomp/ |
| taskloop.c | 36 unsigned long num_tasks, int priority, 104 unsigned long grainsize = num_tasks; 106 num_tasks = n / grainsize; 109 num_tasks = ndiv; 110 if (num_tasks != ndiv) 111 num_tasks = ~0UL; 114 && num_tasks != ~0ULL) 120 num_tasks++; 122 if (num_tasks == 1) 125 nfirst = num_tasks - 2 [all...] |
| /src/external/gpl3/gcc.old/dist/libgomp/ |
| taskloop.c | 36 unsigned long num_tasks, int priority, 104 unsigned long grainsize = num_tasks; 106 num_tasks = n / grainsize; 109 num_tasks = ndiv; 110 if (num_tasks != ndiv) 111 num_tasks = ~0UL; 114 && num_tasks != ~0ULL) 120 num_tasks++; 122 if (num_tasks == 1) 125 nfirst = num_tasks - 2 [all...] |
| /src/external/gpl3/gcc/dist/gcc/ |
| omp-expand.cc | 776 tree num_tasks = NULL_TREE; local 794 num_tasks = omp_find_clause (tclauses, OMP_CLAUSE_NUM_TASKS); 795 if (num_tasks) 797 if (OMP_CLAUSE_NUM_TASKS_STRICT (num_tasks)) 799 num_tasks = OMP_CLAUSE_NUM_TASKS_EXPR (num_tasks); 803 num_tasks = omp_find_clause (tclauses, OMP_CLAUSE_GRAINSIZE); 804 if (num_tasks) 807 if (OMP_CLAUSE_GRAINSIZE_STRICT (num_tasks)) 809 num_tasks = OMP_CLAUSE_GRAINSIZE_EXPR (num_tasks) [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/ |
| omp-expand.cc | 775 tree num_tasks = NULL_TREE; local 793 num_tasks = omp_find_clause (tclauses, OMP_CLAUSE_NUM_TASKS); 794 if (num_tasks) 796 if (OMP_CLAUSE_NUM_TASKS_STRICT (num_tasks)) 798 num_tasks = OMP_CLAUSE_NUM_TASKS_EXPR (num_tasks); 802 num_tasks = omp_find_clause (tclauses, OMP_CLAUSE_GRAINSIZE); 803 if (num_tasks) 806 if (OMP_CLAUSE_GRAINSIZE_STRICT (num_tasks)) 808 num_tasks = OMP_CLAUSE_GRAINSIZE_EXPR (num_tasks) [all...] |
| /src/external/gpl3/gcc/dist/gcc/fortran/ |
| trans-openmp.cc | 4557 if (clauses->num_tasks) 4559 tree num_tasks; local 4562 gfc_conv_expr (&se, clauses->num_tasks); 4564 num_tasks = gfc_evaluate_now (se.expr, block); 4568 OMP_CLAUSE_NUM_TASKS_EXPR (c) = num_tasks; 6969 clausesa[GFC_OMP_SPLIT_TASKLOOP].num_tasks 6970 = code->ext.omp_clauses->num_tasks;
|
| openmp.cc | 180 gfc_free_expr (c->num_tasks); 3268 && (m = gfc_match_dupl_check (!c->num_tasks, "num_tasks", true)) 3275 if (gfc_match (" %e )", &c->num_tasks) != MATCH_YES) 9176 if (omp_clauses->num_tasks) 9177 resolve_positive_int_expr (omp_clauses->num_tasks, "NUM_TASKS");
|
| gfortran.h | 1572 struct gfc_expr *num_tasks; member in struct:gfc_omp_clauses
|
| frontend-passes.cc | 5669 WALK_SUBEXPR (co->ext.omp_clauses->num_tasks);
|
| /src/external/gpl3/gcc.old/dist/gcc/fortran/ |
| trans-openmp.cc | 4069 if (clauses->num_tasks) 4071 tree num_tasks; local 4074 gfc_conv_expr (&se, clauses->num_tasks); 4076 num_tasks = gfc_evaluate_now (se.expr, block); 4080 OMP_CLAUSE_NUM_TASKS_EXPR (c) = num_tasks; 6215 clausesa[GFC_OMP_SPLIT_TASKLOOP].num_tasks 6216 = code->ext.omp_clauses->num_tasks;
|
| openmp.cc | 95 gfc_free_expr (c->num_tasks); 2483 && (m = gfc_match_dupl_check (!c->num_tasks, "num_tasks", true)) 2490 if (gfc_match (" %e )", &c->num_tasks) != MATCH_YES) 7527 if (omp_clauses->num_tasks) 7528 resolve_positive_int_expr (omp_clauses->num_tasks, "NUM_TASKS");
|
| gfortran.h | 1518 struct gfc_expr *num_tasks; member in struct:gfc_omp_clauses
|
| frontend-passes.cc | 5652 WALK_SUBEXPR (co->ext.omp_clauses->num_tasks);
|