Searched refs:AsyncHostMemory (Results 1 – 2 of 2) sorted by relevance
137 template <typename T> class AsyncHostMemory; variable519 Expected<AsyncHostMemory<const T>> registerHostMem(Span<const T> Memory) { in registerHostMem()523 return AsyncHostMemory<const T>( in registerHostMem()529 Expected<AsyncHostMemory<T>> registerHostMem(Span<T> Memory) { in registerHostMem()533 return AsyncHostMemory<T>(Memory.data(), Memory.size(), in registerHostMem()538 Expected<AsyncHostMemory<T>> registerHostMem(T (&Array)[N]) { in registerHostMem()543 return AsyncHostMemory<T>(Span.data(), Span.size(), in registerHostMem()550 auto registerHostMem(Container &Cont) -> Expected<AsyncHostMemory<558 return AsyncHostMemory<ValueType>(1209 template <typename ElementType> class AsyncHostMemory {[all …]
205 acxxel::AsyncHostMemory<int> AsyncA = in TEST_P()207 acxxel::AsyncHostMemory<int> AsyncB = in TEST_P()223 acxxel::AsyncHostMemory<uint32_t> AsyncHost = in TEST_P()235 acxxel::Expected<acxxel::AsyncHostMemory<const int>> MaybeAsyncHostMemory = in TEST_P()239 acxxel::AsyncHostMemory<const int> AsyncHostMemory = in TEST_P() local241 EXPECT_EQ(Data.get(), AsyncHostMemory.data()); in TEST_P()242 EXPECT_EQ(3, AsyncHostMemory.size()); in TEST_P()294 acxxel::AsyncHostMemory<int> AsyncA = in TEST_P()296 acxxel::AsyncHostMemory<int> AsyncB = in TEST_P()