Home
last modified time | relevance | path

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

/dragonfly/contrib/gcc-8.0/libgomp/
HDtarget.c166 gomp_device_copy (struct gomp_device_descr *devicep, in gomp_device_copy() argument
172 if (!copy_func (devicep->target_id, dstaddr, srcaddr, size)) in gomp_device_copy()
174 gomp_mutex_unlock (&devicep->lock); in gomp_device_copy()
267 gomp_copy_host2dev (struct gomp_device_descr *devicep, in gomp_copy_host2dev() argument
296 gomp_device_copy (devicep, devicep->host2dev_func, "dev", d, "host", h, sz); in gomp_copy_host2dev()
300 gomp_copy_dev2host (struct gomp_device_descr *devicep, in gomp_copy_dev2host() argument
303 gomp_device_copy (devicep, devicep->dev2host_func, "host", h, "dev", d, sz); in gomp_copy_dev2host()
307 gomp_free_device_memory (struct gomp_device_descr *devicep, void *devptr) in gomp_free_device_memory() argument
309 if (!devicep->free_func (devicep->target_id, devptr)) in gomp_free_device_memory()
311 gomp_mutex_unlock (&devicep->lock); in gomp_free_device_memory()
[all …]
HDoacc-plugin.c37 struct gomp_device_descr *devicep = tgt->device_descr; in GOMP_PLUGIN_async_unmap_vars() local
39 devicep->openacc.async_set_async_func (async); in GOMP_PLUGIN_async_unmap_vars()
41 devicep->openacc.async_set_async_func (acc_async_sync); in GOMP_PLUGIN_async_unmap_vars()
HDtask.c594 gomp_create_target_task (struct gomp_device_descr *devicep, in gomp_create_target_task() argument
654 ttask->devicep = devicep; in gomp_create_target_task()
722 if (devicep != NULL in gomp_create_target_task()
723 && (devicep->capabilities & GOMP_OFFLOAD_CAP_OPENMP_400)) in gomp_create_target_task()
HDlibgomp.h493 struct gomp_device_descr *devicep; member