Home
last modified time | relevance | path

Searched refs:OwnedAsyncHostMemory (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/parallel-libs/acxxel/
Dacxxel.h141 template <typename T> class OwnedAsyncHostMemory; variable
567 Expected<OwnedAsyncHostMemory<T>> newAsyncHostMem(ptrdiff_t ElementCount) { in newAsyncHostMem()
575 return OwnedAsyncHostMemory<T>(Memory, ElementCount, in newAsyncHostMem()
1259 template <typename ElementType> class OwnedAsyncHostMemory {
1263 OwnedAsyncHostMemory(const OwnedAsyncHostMemory &) = delete;
1264 OwnedAsyncHostMemory &operator=(const OwnedAsyncHostMemory &) = delete;
1265 OwnedAsyncHostMemory(OwnedAsyncHostMemory &&) noexcept;
1266 OwnedAsyncHostMemory &operator=(OwnedAsyncHostMemory &&) noexcept;
1268 ~OwnedAsyncHostMemory() { in ~OwnedAsyncHostMemory()
1292 OwnedAsyncHostMemory(void *Memory, ptrdiff_t ElementCount, in OwnedAsyncHostMemory() function
[all …]
/external/llvm-project/parallel-libs/acxxel/tests/
Dacxxel_test.cpp260 acxxel::OwnedAsyncHostMemory<RefCounter> A = in TEST_P()
270 acxxel::OwnedAsyncHostMemory<int> A = in TEST_P()
274 acxxel::OwnedAsyncHostMemory<int> B = in TEST_P()