Searched refs:pool_allocator (Results 1 – 6 of 6) sorted by relevance
/external/deqp-deps/glslang/glslang/Include/ |
D | PoolAlloc.h | 264 class pool_allocator { 275 typedef pool_allocator<Other> other; 280 pool_allocator() : allocator(GetThreadPoolAllocator()) { } in pool_allocator() function 281 pool_allocator(TPoolAllocator& a) : allocator(a) { } in pool_allocator() function 282 pool_allocator(const pool_allocator<T>& p) : allocator(p.allocator) { } in pool_allocator() function 285 pool_allocator(const pool_allocator<Other>& p) : allocator(p.getAllocator()) { } in pool_allocator() function 301 …bool operator==(const pool_allocator& rhs) const { return &getAllocator() == &rhs.getAllocator(); } 302 …bool operator!=(const pool_allocator& rhs) const { return &getAllocator() != &rhs.getAllocator(); } 311 pool_allocator& operator=(const pool_allocator&) { return *this; }
|
D | Common.h | 127 typedef pool_allocator<char> TStringAllocator; 175 template <class T> class TVector : public std::vector<T, pool_allocator<T> > { 179 typedef typename std::vector<T, pool_allocator<T> >::size_type size_type; 180 TVector() : std::vector<T, pool_allocator<T> >() {} 181 TVector(const pool_allocator<T>& a) : std::vector<T, pool_allocator<T> >(a) {} 182 TVector(size_type i) : std::vector<T, pool_allocator<T> >(i) {} 183 TVector(size_type i, const T& val) : std::vector<T, pool_allocator<T> >(i, val) {} 186 template <class T> class TList : public std::list<T, pool_allocator<T> > { 190 class TMap : public std::map<K, D, CMP, pool_allocator<std::pair<K const, D> > > { 194 class TUnorderedMap : public std::unordered_map<K, D, HASH, PRED, pool_allocator<std::pair<K const,…
|
/external/swiftshader/src/OpenGL/compiler/ |
D | Common.h | 48 typedef pool_allocator<char> TStringAllocator; 67 template <class T> class TVector : public std::vector<T, pool_allocator<T> > { 69 typedef typename std::vector<T, pool_allocator<T> >::size_type size_type; 70 TVector() : std::vector<T, pool_allocator<T> >() {} in TVector() 71 TVector(const pool_allocator<T>& a) : std::vector<T, pool_allocator<T> >(a) {} in TVector() 72 TVector(size_type i): std::vector<T, pool_allocator<T> >(i) {} in TVector() 76 class TMap : public std::map<K, D, CMP, pool_allocator<std::pair<const K, D> > > { 78 typedef pool_allocator<std::pair<const K, D> > tAllocator;
|
D | PoolAlloc.h | 247 class pool_allocator { 259 typedef pool_allocator<Other> other; 264 pool_allocator() : allocator(GetGlobalPoolAllocator()) { } in pool_allocator() function 265 pool_allocator(TPoolAllocator& a) : allocator(&a) { } in pool_allocator() function 266 pool_allocator(const pool_allocator<T>& p) : allocator(p.allocator) { } in pool_allocator() function 269 pool_allocator<T>& operator=(const pool_allocator<Other>& p) { 275 pool_allocator(const pool_allocator<Other>& p) : allocator(&p.getAllocator()) { } in pool_allocator() function 301 bool operator==(const pool_allocator& rhs) const { return &getAllocator() == &rhs.getAllocator(); } 302 bool operator!=(const pool_allocator& rhs) const { return &getAllocator() != &rhs.getAllocator(); }
|
/external/deqp-deps/glslang/glslang/MachineIndependent/ |
D | SymbolTable.h | 529 …typedef std::map<TString, TSymbol*, std::less<TString>, pool_allocator<std::pair<const TString, TS…
|
/external/tensorflow/tensorflow/core/ |
D | BUILD | 3074 "common_runtime/pool_allocator.h", 3120 "common_runtime/pool_allocator.cc",
|