HomeSort by: relevance | last modified time | path
    Searched defs:aq (Results 1 - 25 of 34) sorted by relevancy

1 2

  /src/external/gpl3/gcc/dist/libgomp/
oacc-cuda.c 93 goacc_aq aq = lookup_goacc_asyncqueue (thr, false, async); local
94 if (!aq)
106 ret = thr->dev->openacc.cuda.get_stream_func (aq);
142 goacc_aq aq = get_goacc_asyncqueue (async); local
145 if (!aq)
154 ret = thr->dev->openacc.cuda.set_stream_func (aq, stream);
libgomp-plugin.h 63 struct goacc_asyncqueue *aq; member in struct:goacc_asyncqueue_list
oacc-async.c 114 n->aq = dev->openacc.async.asyncqueue[async];
145 goacc_aq aq = lookup_goacc_asyncqueue (thr, false, async); local
146 if (!aq)
158 int res = thr->dev->openacc.async.test_func (aq);
181 if (!thr->dev->openacc.async.test_func (l->aq))
202 goacc_aq aq = lookup_goacc_asyncqueue (thr, false, async); local
203 if (!aq)
215 if (!thr->dev->openacc.async.synchronize_func (aq))
294 ret &= thr->dev->openacc.async.synchronize_func (l->aq);
339 ret &= thr->dev->openacc.async.serialize_func (l->aq, waiting_queue)
    [all...]
oacc-parallel.c 292 goacc_aq aq = get_goacc_asyncqueue (async); local
295 = goacc_map_vars (acc_dev, aq, mapnum, hostaddrs, NULL, sizes, kinds, true,
308 if (aq == NULL)
313 dims, tgt, aq);
324 /* If running synchronously (aq == NULL), this will unmap immediately. */
325 goacc_unmap_vars (tgt, true, aq);
oacc-mem.c 201 goacc_aq aq = get_goacc_asyncqueue (async); local
203 gomp_copy_dev2host (thr->dev, aq, h, d, s);
205 gomp_copy_host2dev (thr->dev, aq, d, h, s, false, /* TODO: cbuf? */ NULL);
567 goacc_aq aq = get_goacc_asyncqueue (async); local
570 = goacc_map_vars (acc_dev, aq, mapnum, hostaddrs, NULL, sizes,
664 unsigned short kind, splay_tree_key n, goacc_aq aq)
726 gomp_copy_dev2host (acc_dev, aq, h, d, s);
729 if (aq)
734 gomp_remove_var_async (acc_dev, n, aq);
784 goacc_aq aq = get_goacc_asyncqueue (async) local
887 goacc_aq aq = get_goacc_asyncqueue (async); local
932 goacc_aq aq = get_goacc_asyncqueue (async); local
971 struct goacc_asyncqueue *aq = get_goacc_asyncqueue (async); local
1457 goacc_aq aq = get_goacc_asyncqueue (async); local
    [all...]
  /src/external/gpl3/gcc.old/dist/libgomp/
oacc-cuda.c 93 goacc_aq aq = lookup_goacc_asyncqueue (thr, false, async); local
94 if (!aq)
106 ret = thr->dev->openacc.cuda.get_stream_func (aq);
142 goacc_aq aq = get_goacc_asyncqueue (async); local
145 if (!aq)
154 ret = thr->dev->openacc.cuda.set_stream_func (aq, stream);
libgomp-plugin.h 64 struct goacc_asyncqueue *aq; member in struct:goacc_asyncqueue_list
oacc-async.c 114 n->aq = dev->openacc.async.asyncqueue[async];
145 goacc_aq aq = lookup_goacc_asyncqueue (thr, false, async); local
146 if (!aq)
158 int res = thr->dev->openacc.async.test_func (aq);
181 if (!thr->dev->openacc.async.test_func (l->aq))
202 goacc_aq aq = lookup_goacc_asyncqueue (thr, false, async); local
203 if (!aq)
215 if (!thr->dev->openacc.async.synchronize_func (aq))
294 ret &= thr->dev->openacc.async.synchronize_func (l->aq);
339 ret &= thr->dev->openacc.async.serialize_func (l->aq, waiting_queue)
    [all...]
oacc-parallel.c 291 goacc_aq aq = get_goacc_asyncqueue (async); local
293 tgt = goacc_map_vars (acc_dev, aq, mapnum, hostaddrs, NULL, sizes, kinds,
308 if (aq == NULL)
313 dims, tgt, aq);
324 /* If running synchronously (aq == NULL), this will unmap immediately. */
325 goacc_unmap_vars (tgt, true, aq);
oacc-mem.c 201 goacc_aq aq = get_goacc_asyncqueue (async); local
203 gomp_copy_dev2host (thr->dev, aq, h, d, s);
205 gomp_copy_host2dev (thr->dev, aq, d, h, s, false, /* TODO: cbuf? */ NULL);
571 goacc_aq aq = get_goacc_asyncqueue (async); local
574 = goacc_map_vars (acc_dev, aq, mapnum, hostaddrs, NULL, sizes,
668 unsigned short kind, splay_tree_key n, goacc_aq aq)
713 gomp_copy_dev2host (acc_dev, aq, h, d, s);
716 if (aq)
721 gomp_remove_var_async (acc_dev, n, aq);
771 goacc_aq aq = get_goacc_asyncqueue (async) local
874 goacc_aq aq = get_goacc_asyncqueue (async); local
919 goacc_aq aq = get_goacc_asyncqueue (async); local
958 struct goacc_asyncqueue *aq = get_goacc_asyncqueue (async); local
1402 goacc_aq aq = get_goacc_asyncqueue (async); local
    [all...]
  /src/external/lgpl3/gmp/dist/mini-gmp/tests/
t-mpq_muldiv.c 54 mpq_t aq, bq, refq, resq; local
62 mpq_init (aq);
74 _mpq_set_zz (aq, an, ad);
78 mpq_mul (resq, aq, bq);
96 mpq_inv (aq, aq);
97 mpq_div (resq, aq, bq);
113 mpq_swap (bq, aq);
114 mpq_div (resq, aq, bq);
130 mpq_set (resq, aq);
    [all...]
t-mpq_muldiv_2exp.c 54 mpq_t aq, rq, tq; local
61 mpq_init (aq);
71 _mpq_set_zz (aq, a, b);
75 mpq_mul_2exp (rq, aq, e);
79 mpq_div (tq, aq, tq);
93 mpq_div_2exp (rq, aq, e);
96 mpq_div (aq, aq, rq);
97 mpq_get_num (t, aq);
100 || mpz_sizeinbase (t, 2) - 1 != e || mpz_cmp_ui (mpq_denref (aq), 1) != 0
    [all...]
  /src/sys/dev/acpi/
acpi_quirks.c 155 const struct acpi_quirk *aq; local
183 aq = &acpi_quirks[i];
185 if (strncmp(aq->aq_tabletype, ACPI_SIG_DSDT, 4) == 0)
187 else if (strncmp(aq->aq_tabletype, ACPI_SIG_XSDT, 4) == 0)
189 else if (strncmp(aq->aq_tabletype, ACPI_SIG_FADT, 4) == 0)
195 len = strlen(aq->aq_oemid);
197 if (strncmp(aq->aq_oemid, hdr->OemId, len) != 0)
200 if (acpi_quirks_revcmp(aq->aq_oemrev,
201 hdr->OemRevision, aq->aq_cmpop) != 0)
204 len = strlen(aq->aq_tabid)
    [all...]
  /src/external/gpl3/gcc/dist/libgcc/
libgcov-interface.c 203 va_list ap, aq; local
211 va_copy (aq, ap);
221 args[i] = va_arg (aq, char *);
222 va_end (aq);
238 va_list ap, aq; local
246 va_copy (aq, ap);
256 args[i] = va_arg (aq, char *);
257 va_end (aq);
273 va_list ap, aq; local
282 va_copy (aq, ap)
    [all...]
  /src/external/gpl3/gcc.old/dist/libgcc/
libgcov-interface.c 203 va_list ap, aq; local
211 va_copy (aq, ap);
221 args[i] = va_arg (aq, char *);
222 va_end (aq);
238 va_list ap, aq; local
246 va_copy (aq, ap);
256 args[i] = va_arg (aq, char *);
257 va_end (aq);
273 va_list ap, aq; local
282 va_copy (aq, ap)
    [all...]
  /src/external/lgpl3/mpfr/dist/src/
add1.c 32 mpfr_prec_t aq, bq, cq, aq2; local
55 aq = MPFR_GET_PREC (a);
59 an = MPFR_PREC2LIMBS (aq); /* number of limbs of a */
61 sh = aq2 - aq; /* non-significant bits in low limb */
sqr.c 514 mpfr_prec_t aq, bq; local
538 aq = MPFR_GET_PREC(a);
542 if (aq == bq)
544 if (aq < GMP_NUMB_BITS)
545 return mpfr_sqr_1 (a, b, rnd_mode, aq);
547 if (GMP_NUMB_BITS < aq && aq < 2 * GMP_NUMB_BITS)
548 return mpfr_sqr_2 (a, b, rnd_mode, aq);
550 if (aq == GMP_NUMB_BITS)
553 if (2 * GMP_NUMB_BITS < aq && aq < 3 * GMP_NUMB_BITS
    [all...]
sub1.c 40 mpfr_prec_t aq, bq; local
100 since in the "MAX (aq, bq) + 2 <= diff_exp" branch, the exponent
129 aq = MPFR_GET_PREC (a);
136 if (MPFR_UNLIKELY (MAX (aq, bq) + 2 <= diff_exp))
198 sh = (mpfr_prec_t) an * GMP_NUMB_BITS - aq;
390 sh = (mpfr_prec_t) an * GMP_NUMB_BITS - aq;
mul.c 738 mpfr_prec_t aq, bq, cq; local
795 aq = MPFR_GET_PREC (a);
800 if (aq == bq && aq == cq)
802 if (aq < GMP_NUMB_BITS)
803 return mpfr_mul_1 (a, b, c, rnd_mode, aq);
805 if (GMP_NUMB_BITS < aq && aq < 2 * GMP_NUMB_BITS)
806 return mpfr_mul_2 (a, b, c, rnd_mode, aq);
808 if (aq == GMP_NUMB_BITS
    [all...]
  /src/external/bsd/libarchive/dist/libarchive/
archive_acl.c 271 struct archive_acl_entry *ap, *aq; local
347 aq = NULL;
357 aq = ap;
365 if (aq == NULL)
368 aq->next = ap;
  /src/external/bsd/libevent/dist/
buffer.c 2853 va_list aq; local
2880 va_copy(aq, ap);
2882 sz = evutil_vsnprintf(buffer, space, fmt, aq);
2884 va_end(aq);
  /src/external/bsd/ntp/dist/libntp/
snprintf.c 1523 va_list aq; local
1525 VA_COPY(aq, ap);
1526 len = vsnprintf(NULL, 0, format, aq);
1527 VA_END_COPY(aq);
  /src/external/bsd/ntp/dist/sntp/libevent/
buffer.c 2851 va_list aq; local
2878 va_copy(aq, ap);
2880 sz = evutil_vsnprintf(buffer, space, fmt, aq);
2882 va_end(aq);
  /src/external/gpl3/gcc.old/dist/libgomp/plugin/
plugin-nvptx.c 223 struct goacc_asyncqueue *aq; member in struct:nvptx_callback
1543 struct goacc_asyncqueue *aq)
1596 mapnum * sizeof (void *), aq->cuda_stream);
1613 dp, aq->cuda_stream);
1616 GOMP_OFFLOAD_openacc_async_queue_callback (aq, cuda_free_argmem, block);
1663 GOMP_OFFLOAD_openacc_cuda_get_stream (struct goacc_asyncqueue *aq)
1665 return (void *) aq->cuda_stream;
1670 GOMP_OFFLOAD_openacc_cuda_set_stream (struct goacc_asyncqueue *aq, void *stream)
1672 if (aq->cuda_stream)
1674 CUDA_CALL_ASSERT (cuStreamSynchronize, aq->cuda_stream)
1688 struct goacc_asyncqueue *aq local
    [all...]
  /src/external/gpl3/gdb/dist/sim/bfin/
bfin-sim.h 69 bu32 ac0, ac0_copy, ac1, an, aq; member in struct:bfin_cpu_state
257 |ASTAT_DEPOSIT(aq, AQ_BIT) \
279 _SET_ASTAT(a, aq, AQ_BIT); \

Completed in 47 milliseconds

1 2