reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Support/SmallPtrSet.cpp
  145   assert(&RHS != this && "Self-copy should be handled by the caller.");
  147   if (isSmall() && RHS.isSmall())
  148     assert(CurArraySize == RHS.CurArraySize &&
  152   if (RHS.isSmall()) {
  157   } else if (CurArraySize != RHS.CurArraySize) {
  159       CurArray = (const void**)safe_malloc(sizeof(void*) * RHS.CurArraySize);
  162                                              sizeof(void*) * RHS.CurArraySize);
  167   CopyHelper(RHS);