Searched defs:DataPool (Results 1 – 1 of 1) sorted by relevance
219 template <typename T> struct DataPool final { struct220 static __thread DataPool<T> *ThreadDataPool;221 std::mutex DPMutex{};224 std::vector<T *> DataPointer{};225 std::vector<T *> RemoteDataPointer{};228 std::list<void *> memory;231 std::atomic<int> remote{0};234 int total{0};236 int remoteReturn{0};237 int localReturn{0};[all …]