Searched refs:StlAllocator (Results 1 – 2 of 2) sorted by relevance
/external/swiftshader/third_party/marl/include/marl/ |
D | memory.h | 32 struct StlAllocator; 330 struct StlAllocator { struct 342 typedef StlAllocator<U> other; argument 347 inline StlAllocator(Allocator* allocator); 350 inline StlAllocator(const StlAllocator<U>& other); 386 friend struct StlAllocator; 391 StlAllocator<T>::StlAllocator(Allocator* allocator) : allocator(allocator) {} in StlAllocator() function 395 StlAllocator<T>::StlAllocator(const StlAllocator<U>& other) { in StlAllocator() function 400 typename StlAllocator<T>::pointer StlAllocator<T>::address(reference x) const { in address() 404 typename StlAllocator<T>::const_pointer StlAllocator<T>::address( in address() [all …]
|
D | containers.h | 41 using deque = std::deque<T, StlAllocator<T>>; 44 using map = std::map<K, V, C, StlAllocator<std::pair<const K, V>>>; 47 using set = std::set<K, C, StlAllocator<K>>; 54 std::unordered_map<K, V, H, E, StlAllocator<std::pair<const K, V>>>; 57 using unordered_set = std::unordered_set<K, H, E, StlAllocator<K>>;
|