Searched refs:maxiter (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/openmp/runtime/test/worksharing/for/ |
D | omp_for_schedule_guided.c | 37 int maxiter; in test_omp_for_schedule_guided() local 43 maxiter = 0; in test_omp_for_schedule_guided() 65 #pragma omp parallel shared(tids,maxiter) in test_omp_for_schedule_guided() 76 #pragma omp flush(maxiter) in test_omp_for_schedule_guided() 77 if (j > maxiter) { in test_omp_for_schedule_guided() 80 maxiter = j; in test_omp_for_schedule_guided() 84 #pragma omp flush(maxiter,notout) in test_omp_for_schedule_guided() 85 while (notout && (count < MAX_TIME) && (maxiter == j)) { in test_omp_for_schedule_guided() 86 #pragma omp flush(maxiter,notout) in test_omp_for_schedule_guided() 103 #pragma omp flush(maxiter,notout) in test_omp_for_schedule_guided()
|
D | omp_for_schedule_static.c | 21 int maxiter; in test_omp_for_schedule_static() local 31 maxiter = 0; in test_omp_for_schedule_static() 59 #pragma omp flush(maxiter) in test_omp_for_schedule_static() 60 if (j > maxiter) { in test_omp_for_schedule_static() 63 maxiter = j; in test_omp_for_schedule_static() 67 while (notout && (count < MAX_TIME) && (maxiter == j)) { in test_omp_for_schedule_static() 68 #pragma omp flush(maxiter,notout) in test_omp_for_schedule_static() 83 #pragma omp flush(maxiter,notout) in test_omp_for_schedule_static()
|
D | omp_for_schedule_static_3.c | 25 int maxiter; in test_omp_for_schedule_static_3() local 36 maxiter = 0; in test_omp_for_schedule_static_3() 66 #pragma omp flush(maxiter) in test_omp_for_schedule_static_3() 67 if (j > maxiter) { in test_omp_for_schedule_static_3() 70 maxiter = j; in test_omp_for_schedule_static_3() 74 while (notout && (count < MAX_TIME) && (maxiter == j)) { in test_omp_for_schedule_static_3() 75 #pragma omp flush(maxiter,notout) in test_omp_for_schedule_static_3() 91 #pragma omp flush(maxiter,notout) in test_omp_for_schedule_static_3()
|
/external/iptables/libxtables/ |
D | xtoptions.c | 293 unsigned int maxiter; in xtopt_parse_mint() local 298 maxiter = entry->size / esize; in xtopt_parse_mint() 299 if (maxiter == 0) in xtopt_parse_mint() 300 maxiter = ARRAY_SIZE(cb->val.u32_range); in xtopt_parse_mint() 307 if (cb->nvals == maxiter) in xtopt_parse_mint() 310 cb->ext_name, entry->name, maxiter); in xtopt_parse_mint() 604 unsigned int maxiter; in xtopt_parse_mport() local 611 maxiter = entry->size / esize; in xtopt_parse_mport() 612 if (maxiter == 0) in xtopt_parse_mport() 613 maxiter = 2; /* ARRAY_SIZE(cb->val.port_range) */ in xtopt_parse_mport() [all …]
|
/external/eigen/test/ |
D | sparseLM.cpp | 161 int maxiter = 200; in test_sparseLM_T() local 163 MatrixXd Err(values, maxiter); in test_sparseLM_T() 164 MatrixXd Mod(values, maxiter); in test_sparseLM_T()
|
/external/python/cpython2/Lib/ |
D | repr.py | 41 def _repr_iterable(self, x, level, left, right, maxiter, trail=''): argument 48 pieces = [repr1(elem, newlevel) for elem in islice(x, maxiter)] 49 if n > maxiter: pieces.append('...')
|
/external/python/cpython3/Lib/ |
D | reprlib.py | 64 def _repr_iterable(self, x, level, left, right, maxiter, trail=''): argument 71 pieces = [repr1(elem, newlevel) for elem in islice(x, maxiter)] 72 if n > maxiter: pieces.append('...')
|