reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
159 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), 159 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), 159 : CurPtr(Old.CurPtr), End(Old.End), Slabs(std::move(Old.Slabs)), 160 CustomSizedSlabs(std::move(Old.CustomSizedSlabs)), 161 BytesAllocated(Old.BytesAllocated), RedZoneSize(Old.RedZoneSize), 161 BytesAllocated(Old.BytesAllocated), RedZoneSize(Old.RedZoneSize), 162 Allocator(std::move(Old.Allocator)) { 163 Old.CurPtr = Old.End = nullptr; 163 Old.CurPtr = Old.End = nullptr; 164 Old.BytesAllocated = 0; 165 Old.Slabs.clear(); 166 Old.CustomSizedSlabs.clear();