reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
178 CurPtr = RHS.CurPtr; 179 End = RHS.End; 180 BytesAllocated = RHS.BytesAllocated; 181 RedZoneSize = RHS.RedZoneSize; 182 Slabs = std::move(RHS.Slabs); 183 CustomSizedSlabs = std::move(RHS.CustomSizedSlabs); 184 Allocator = std::move(RHS.Allocator); 186 RHS.CurPtr = RHS.End = nullptr; 186 RHS.CurPtr = RHS.End = nullptr; 187 RHS.BytesAllocated = 0; 188 RHS.Slabs.clear(); 189 RHS.CustomSizedSlabs.clear();