Home
last modified time | relevance | path

Searched refs:DstDev (Results 1 – 25 of 32) sorted by relevance

12

/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/openmp/libomptarget/src/
H A Dapi.cpp166 DeviceTy &DstDev = *PM->Devices[dst_device]; in omp_target_memcpy() local
167 AsyncInfoTy AsyncInfo(DstDev); in omp_target_memcpy()
168 rc = DstDev.submitData(dstAddr, srcAddr, length, AsyncInfo); in omp_target_memcpy()
177 DeviceTy &DstDev = *PM->Devices[dst_device]; in omp_target_memcpy() local
180 if (SrcDev.isDataExchangable(DstDev)) { in omp_target_memcpy()
182 rc = SrcDev.dataExchange(srcAddr, DstDev, dstAddr, length, AsyncInfo); in omp_target_memcpy()
194 rc = DstDev.submitData(dstAddr, buffer, length, AsyncInfo); in omp_target_memcpy()
H A Ddevice.cpp485 int32_t DeviceTy::dataExchange(void *SrcPtr, DeviceTy &DstDev, void *DstPtr, in dataExchange() argument
489 return RTL->data_exchange(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, DstPtr, in dataExchange()
492 return RTL->data_exchange_async(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, in dataExchange()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/openmp/libomptarget/src/
H A Dapi.cpp163 DeviceTy &DstDev = PM->Devices[dst_device]; in omp_target_memcpy() local
164 AsyncInfoTy AsyncInfo(DstDev); in omp_target_memcpy()
165 rc = DstDev.submitData(dstAddr, srcAddr, length, AsyncInfo); in omp_target_memcpy()
174 DeviceTy &DstDev = PM->Devices[dst_device]; in omp_target_memcpy() local
177 if (SrcDev.isDataExchangable(DstDev)) { in omp_target_memcpy()
179 rc = SrcDev.dataExchange(srcAddr, DstDev, dstAddr, length, AsyncInfo); in omp_target_memcpy()
191 rc = DstDev.submitData(dstAddr, buffer, length, AsyncInfo); in omp_target_memcpy()
H A Ddevice.cpp491 int32_t DeviceTy::dataExchange(void *SrcPtr, DeviceTy &DstDev, void *DstPtr, in dataExchange() argument
495 return RTL->data_exchange(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, DstPtr, in dataExchange()
498 return RTL->data_exchange_async(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, in dataExchange()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/openmp/libomptarget/src/
H A Dapi.cpp163 DeviceTy &DstDev = PM->Devices[dst_device]; in omp_target_memcpy() local
164 AsyncInfoTy AsyncInfo(DstDev); in omp_target_memcpy()
165 rc = DstDev.submitData(dstAddr, srcAddr, length, AsyncInfo); in omp_target_memcpy()
174 DeviceTy &DstDev = PM->Devices[dst_device]; in omp_target_memcpy() local
177 if (SrcDev.isDataExchangable(DstDev)) { in omp_target_memcpy()
179 rc = SrcDev.dataExchange(srcAddr, DstDev, dstAddr, length, AsyncInfo); in omp_target_memcpy()
191 rc = DstDev.submitData(dstAddr, buffer, length, AsyncInfo); in omp_target_memcpy()
H A Ddevice.cpp491 int32_t DeviceTy::dataExchange(void *SrcPtr, DeviceTy &DstDev, void *DstPtr, in dataExchange() argument
495 return RTL->data_exchange(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, DstPtr, in dataExchange()
498 return RTL->data_exchange_async(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, in dataExchange()
/dports/devel/llvm13/llvm-project-13.0.1.src/openmp/libomptarget/src/
H A Dapi.cpp163 DeviceTy &DstDev = PM->Devices[dst_device];
164 AsyncInfoTy AsyncInfo(DstDev);
165 rc = DstDev.submitData(dstAddr, srcAddr, length, AsyncInfo);
174 DeviceTy &DstDev = PM->Devices[dst_device];
177 if (SrcDev.isDataExchangable(DstDev)) {
179 rc = SrcDev.dataExchange(srcAddr, DstDev, dstAddr, length, AsyncInfo);
191 rc = DstDev.submitData(dstAddr, buffer, length, AsyncInfo);
H A Ddevice.cpp491 int32_t DeviceTy::dataExchange(void *SrcPtr, DeviceTy &DstDev, void *DstPtr, in dataExchange() argument
495 return RTL->data_exchange(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, DstPtr, in dataExchange()
498 return RTL->data_exchange_async(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, in dataExchange()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/openmp/libomptarget/src/
H A Dapi.cpp163 DeviceTy& DstDev = Devices[dst_device]; in omp_target_memcpy() local
164 rc = DstDev.data_submit(dstAddr, srcAddr, length, nullptr); in omp_target_memcpy()
172 DeviceTy &DstDev = Devices[dst_device]; in omp_target_memcpy() local
175 if (SrcDev.isDataExchangable(DstDev)) { in omp_target_memcpy()
176 rc = SrcDev.data_exchange(srcAddr, DstDev, dstAddr, length, nullptr); in omp_target_memcpy()
184 rc = DstDev.data_submit(dstAddr, buffer, length, nullptr); in omp_target_memcpy()
H A Ddevice.cpp364 int32_t DeviceTy::data_exchange(void *SrcPtr, DeviceTy DstDev, void *DstPtr, in data_exchange() argument
368 return RTL->data_exchange(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, DstPtr, in data_exchange()
371 return RTL->data_exchange_async(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, in data_exchange()
/dports/devel/llvm11/llvm-11.0.1.src/projects/openmp/libomptarget/src/
H A Dapi.cpp163 DeviceTy& DstDev = Devices[dst_device]; in omp_target_memcpy() local
164 rc = DstDev.data_submit(dstAddr, srcAddr, length, nullptr); in omp_target_memcpy()
172 DeviceTy &DstDev = Devices[dst_device]; in omp_target_memcpy() local
175 if (SrcDev.isDataExchangable(DstDev)) { in omp_target_memcpy()
176 rc = SrcDev.data_exchange(srcAddr, DstDev, dstAddr, length, nullptr); in omp_target_memcpy()
184 rc = DstDev.data_submit(dstAddr, buffer, length, nullptr); in omp_target_memcpy()
H A Ddevice.cpp364 int32_t DeviceTy::data_exchange(void *SrcPtr, DeviceTy DstDev, void *DstPtr, in data_exchange() argument
368 return RTL->data_exchange(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, DstPtr, in data_exchange()
371 return RTL->data_exchange_async(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, in data_exchange()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/openmp/libomptarget/src/
H A Dapi.cpp160 DeviceTy &DstDev = PM->Devices[dst_device]; in omp_target_memcpy() local
161 rc = DstDev.submitData(dstAddr, srcAddr, length, nullptr); in omp_target_memcpy()
169 DeviceTy &DstDev = PM->Devices[dst_device]; in omp_target_memcpy() local
172 if (SrcDev.isDataExchangable(DstDev)) { in omp_target_memcpy()
173 rc = SrcDev.dataExchange(srcAddr, DstDev, dstAddr, length, nullptr); in omp_target_memcpy()
181 rc = DstDev.submitData(dstAddr, buffer, length, nullptr); in omp_target_memcpy()
H A Ddevice.cpp450 int32_t DeviceTy::dataExchange(void *SrcPtr, DeviceTy &DstDev, void *DstPtr, in dataExchange() argument
454 return RTL->data_exchange(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, DstPtr, in dataExchange()
457 return RTL->data_exchange_async(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, in dataExchange()
H A Ddevice.h213 int32_t dataExchange(void *SrcPtr, DeviceTy &DstDev, void *DstPtr,
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/openmp/libomptarget/src/
H A Dapi.cpp171 DeviceTy &DstDev = PM->Devices[dst_device]; in omp_target_memcpy() local
172 rc = DstDev.submitData(dstAddr, srcAddr, length, nullptr); in omp_target_memcpy()
180 DeviceTy &DstDev = PM->Devices[dst_device]; in omp_target_memcpy() local
183 if (SrcDev.isDataExchangable(DstDev)) { in omp_target_memcpy()
184 rc = SrcDev.dataExchange(srcAddr, DstDev, dstAddr, length, nullptr); in omp_target_memcpy()
192 rc = DstDev.submitData(dstAddr, buffer, length, nullptr); in omp_target_memcpy()
H A Ddevice.cpp432 int32_t DeviceTy::dataExchange(void *SrcPtr, DeviceTy &DstDev, void *DstPtr, in dataExchange() argument
436 return RTL->data_exchange(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, DstPtr, in dataExchange()
439 return RTL->data_exchange_async(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, in dataExchange()
H A Ddevice.h212 int32_t dataExchange(void *SrcPtr, DeviceTy &DstDev, void *DstPtr,
/dports/devel/llvm12/llvm-project-12.0.1.src/openmp/libomptarget/src/
H A Dapi.cpp171 DeviceTy &DstDev = PM->Devices[dst_device]; in omp_target_memcpy() local
172 rc = DstDev.submitData(dstAddr, srcAddr, length, nullptr); in omp_target_memcpy()
180 DeviceTy &DstDev = PM->Devices[dst_device]; in omp_target_memcpy() local
183 if (SrcDev.isDataExchangable(DstDev)) { in omp_target_memcpy()
184 rc = SrcDev.dataExchange(srcAddr, DstDev, dstAddr, length, nullptr); in omp_target_memcpy()
192 rc = DstDev.submitData(dstAddr, buffer, length, nullptr); in omp_target_memcpy()
H A Ddevice.cpp432 int32_t DeviceTy::dataExchange(void *SrcPtr, DeviceTy &DstDev, void *DstPtr, in dataExchange() argument
436 return RTL->data_exchange(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, DstPtr, in dataExchange()
439 return RTL->data_exchange_async(RTLDeviceID, SrcPtr, DstDev.RTLDeviceID, in dataExchange()
/dports/devel/llvm10/llvm-10.0.1.src/projects/openmp/libomptarget/src/
H A Dapi.cpp163 DeviceTy& DstDev = Devices[dst_device]; in omp_target_memcpy() local
164 rc = DstDev.data_submit(dstAddr, srcAddr, length); in omp_target_memcpy()
173 DeviceTy& DstDev = Devices[dst_device]; in omp_target_memcpy() local
176 rc = DstDev.data_submit(dstAddr, buffer, length); in omp_target_memcpy()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/openmp/libomptarget/src/
H A Dapi.cpp163 DeviceTy& DstDev = Devices[dst_device]; in omp_target_memcpy() local
164 rc = DstDev.data_submit(dstAddr, srcAddr, length); in omp_target_memcpy()
173 DeviceTy& DstDev = Devices[dst_device]; in omp_target_memcpy() local
176 rc = DstDev.data_submit(dstAddr, buffer, length); in omp_target_memcpy()
/dports/devel/llvm90/llvm-9.0.1.src/projects/openmp/libomptarget/src/
H A Dapi.cpp155 DeviceTy& DstDev = Devices[dst_device]; in omp_target_memcpy() local
156 rc = DstDev.data_submit(dstAddr, srcAddr, length); in omp_target_memcpy()
165 DeviceTy& DstDev = Devices[dst_device]; in omp_target_memcpy() local
168 rc = DstDev.data_submit(dstAddr, buffer, length); in omp_target_memcpy()
/dports/devel/llvm80/llvm-8.0.1.src/projects/openmp/libomptarget/src/
H A Dapi.cpp156 DeviceTy& DstDev = Devices[dst_device]; in omp_target_memcpy() local
157 rc = DstDev.data_submit(dstAddr, srcAddr, length); in omp_target_memcpy()
166 DeviceTy& DstDev = Devices[dst_device]; in omp_target_memcpy() local
169 rc = DstDev.data_submit(dstAddr, buffer, length); in omp_target_memcpy()
/dports/net-im/matterbridge/matterbridge-1.22.3/vendor/github.com/yaegashi/msgraph.go/beta/
H A DRequestWorkbookFunctionsDst.go11 func (b *WorkbookFunctionsRequestBuilder) DstDev(reqObj *WorkbookFunctionsDstDevRequestParameter) *… func

12