Searched refs:cancel (Results 1 - 25 of 31) sorted by relevance

12

/haiku-buildtools/gcc/libgomp/testsuite/libgomp.c/
H A Dcancel-sections-1.c17 #pragma omp cancel sections
22 #pragma omp cancel sections
27 #pragma omp cancel sections
32 #pragma omp cancel sections
H A Dcancel-for-2.c17 #pragma omp cancel for if (x[0])
23 #pragma omp cancel for if (x[1])
30 #pragma omp cancel for if (x[2])
37 #pragma omp cancel for if (x[3])
47 /* None of these cancel directives should actually cancel anything,
50 #pragma omp cancel parallel if (omp_get_thread_num () == 1 && x[4])
54 #pragma omp cancel for if (x[0])
57 #pragma omp cancel parallel if (omp_get_thread_num () == 2 && x[4])
61 #pragma omp cancel fo
[all...]
H A Dcancel-parallel-1.c12 #pragma omp cancel parallel
H A Dcancel-for-1.c16 #pragma omp cancel for
H A Dcancel-taskgroup-2.c15 #pragma omp cancel taskgroup
31 #pragma omp cancel taskgroup if (i > 5)
H A Dcancel-parallel-3.c35 #pragma omp cancel parallel
H A Dcancel-parallel-2.c17 #pragma omp cancel parallel
H A Dcancel-taskgroup-1.c24 #pragma omp cancel taskgroup
/haiku-buildtools/gcc/gcc/testsuite/c-c++-common/gomp/
H A Dcancel-1.c7 #pragma omp cancel parallel /* { dg-error "orphaned" } */
8 #pragma omp cancel for /* { dg-error "orphaned" } */
9 #pragma omp cancel sections /* { dg-error "orphaned" } */
10 #pragma omp cancel taskgroup /* { dg-error "orphaned" } */
23 #pragma omp cancel parallel
24 #pragma omp cancel for /* { dg-error "not closely nested inside" } */
25 #pragma omp cancel sections /* { dg-error "not closely nested inside" } */
26 #pragma omp cancel taskgroup /* { dg-error "not closely nested inside" } */
33 #pragma omp cancel parallel /* { dg-error "not closely nested inside" } */
34 #pragma omp cancel fo
[all...]
/haiku-buildtools/gcc/libgomp/testsuite/libgomp.c++/
H A Dcancel-sections-1.C5 #include "cancel-test.h"
19 #pragma omp cancel sections
25 #pragma omp cancel sections
31 #pragma omp cancel sections
37 #pragma omp cancel sections
H A Dcancel-parallel-1.C5 #include "cancel-test.h"
13 #pragma omp cancel parallel
H A Dcancel-for-2.C5 #include "cancel-test.h"
24 #pragma omp cancel for if (x[0])
33 #pragma omp cancel for if (x[1])
43 #pragma omp cancel for if (x[2])
53 #pragma omp cancel for if (x[3])
66 /* None of these cancel directives should actually cancel anything,
69 #pragma omp cancel parallel if (omp_get_thread_num () == 1 && x[4])
76 #pragma omp cancel for if (x[0])
79 #pragma omp cancel paralle
[all...]
H A Dcancel-for-1.C5 #include "cancel-test.h"
20 #pragma omp cancel for
H A Dcancel-taskgroup-3.C6 #include "cancel-test.h"
23 #pragma omp cancel taskgroup
46 #pragma omp cancel taskgroup if (i > 5)
H A Dcancel-parallel-2.C6 #include "cancel-test.h"
21 #pragma omp cancel parallel
H A Dcancel-parallel-3.C6 #include "cancel-test.h"
40 #pragma omp cancel parallel
/haiku-buildtools/gcc/mpfr/src/
H A Dlog.c120 mpfr_exp_t cancel; local
133 mpfr_sub (tmp1, tmp2, tmp1, MPFR_RNDN); /* log(a), err<=7ulps+cancel */
137 cancel = MPFR_GET_EXP (tmp2) - MPFR_GET_EXP (tmp1);
138 MPFR_LOG_MSG (("canceled bits=%ld\n", (long) cancel));
140 if (MPFR_UNLIKELY (cancel < 0))
141 cancel = 0;
146 if (MPFR_LIKELY (MPFR_CAN_ROUND (tmp1, p-cancel-4, q, rnd_mode)))
151 if cancel = 0 (can this occur?). */
152 p += cancel >= 8 ? cancel
[all...]
H A Dsub1.c36 mpfr_prec_t cancel, cancel1; local
50 sign = mpfr_cmp2 (b, c, &cancel);
149 (-cancel) % GMP_NUMB_BITS to the right */
151 MPFR_UNSIGNED_MINUS_MODULO (shift_b, cancel);
152 cancel1 = (cancel + shift_b) / GMP_NUMB_BITS;
172 (diff_exp-cancel) % GMP_NUMB_BITS to the right */
176 shift_c = ((mpfr_uexp_t) diff_exp - cancel) % GMP_NUMB_BITS;
179 shift_c = diff_exp - (cancel % GMP_NUMB_BITS);
209 /* here we have shift_c = (diff_exp - cancel) % GMP_NUMB_BITS,
211 thus we want cancel2 = ceil((cancel
[all...]
H A Dcmp2.c28 from |b| in *cancel. Returns the sign of the difference (-1, 0, 1).
37 mpfr_cmp2 (mpfr_srcptr b, mpfr_srcptr c, mpfr_prec_t *cancel) argument
100 *cancel = res + z;
185 *cancel = res;
197 *cancel = res;
222 *cancel = res + (bp[bn] < cc);
241 *cancel = res;
H A Dconst_pi.c46 mpfr_prec_t px, p, cancel, k, kmax; local
91 cancel = mpfr_cmp_ui (S, 0) ? (mpfr_uexp_t) -mpfr_get_exp(S) : p;
92 /* MPFR_ASSERTN (cancel >= px || cancel >= 9 * (1 << k) - 4); */
95 /* stop when |A_k - B_k| <= 2^(k-p) i.e. cancel >= p-k */
96 if (cancel + k >= p)
H A Dcos.c136 mpfr_exp_t exps, cancel = 0, expx; local
272 if (exps < cancel)
274 m += cancel - exps;
275 cancel = exps;
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/torture/
H A Dpr39204.c103 cancel:
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/compile/
H A Dpr34334.c117 unsigned int cancel : 1, member in struct:gftp_transfer_tag
/haiku-buildtools/gcc/libstdc++-v3/testsuite/util/regression/rand/priority_queue/
H A Dcontainer_rand_regression_test.h165 cancel() function in struct:__gnu_pbds::test::detail::container_rand_regression_test::destructor_printer
/haiku-buildtools/gcc/gmp/mpn/x86/k6/
H A Dpre_mod_1.asm57 movl %edx, %edi C first n2 to cancel

Completed in 125 milliseconds

12