Lines Matching defs:SimpleAllocator
41 class SimpleAllocator {
43 SimpleAllocator(const SimpleAllocator&) = delete;
44 SimpleAllocator(SimpleAllocator&&) = delete;
45 SimpleAllocator& operator=(const SimpleAllocator&) = delete;
46 SimpleAllocator& operator=(SimpleAllocator&&) = delete;
49 static SimpleAllocator<T>* Instance(std::size_t size = sizeof(T))
51 static SimpleAllocator<T> ins(size);
177 SimpleAllocator(std::size_t size = sizeof(T)) : TSize(size)
180 ~SimpleAllocator()
206 FFRT_LOGI("destruct SimpleAllocator");