Searched refs:CfgLocalAllocator (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/subzero/src/ |
D | IceDefs.h | 134 template <typename T> using CfgList = std::list<T, CfgLocalAllocator<T>>; 136 using CfgUnorderedSet = std::unordered_set<T, H, Eq, CfgLocalAllocator<T>>; 138 using CfgSet = std::set<T, Cmp, CfgLocalAllocator<T>>; 142 std::unordered_map<T, U, H, Eq, CfgLocalAllocator<std::pair<const T, U>>>; 143 template <typename T> using CfgVector = std::vector<T, CfgLocalAllocator<T>>;
|
D | IceMemory.h | 154 using CfgLocalAllocator = sz_allocator<T, CfgAllocatorTraits>; variable
|
D | IceOperand.cpp | 208 auto *V = new (CfgLocalAllocator<Variable>().allocate(One)) in asType()
|
D | IceBitVector.h | 816 using BitVector = BitVectorTmpl<CfgLocalAllocator>;
|
/external/swiftshader/third_party/subzero/docs/ |
D | DESIGN.rst | 1014 Where possible, we allocate from a ``CfgLocalAllocator`` which derives from 1027 all instructions from the ``CfgLocalAllocator``, and we make sure each 1036 ``CfgLocalAllocator`` as the container allocator if this is needed. 1053 ``CfgLocalAllocator`` are disposed of at this point.
|
/external/swiftshader/third_party/subzero/ |
D | DESIGN.rst | 1014 Where possible, we allocate from a ``CfgLocalAllocator`` which derives from 1027 all instructions from the ``CfgLocalAllocator``, and we make sure each 1036 ``CfgLocalAllocator`` as the container allocator if this is needed. 1053 ``CfgLocalAllocator`` are disposed of at this point.
|