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

References

projects/compiler-rt/lib/scudo/standalone/list.h
   40   T *back() { return Last; }
   41   const T *back() const { return Last; }
   44     First = Last = nullptr;
   68     CHECK_EQ(Last, nullptr);
   73       if (I == Last)
   77     CHECK_EQ(Last->Next, nullptr);
   92       Last->Next = X;
   93     Last = X;
   99       Last = X;
  109       Last = nullptr;
  119     if (Last == X)
  120       Last = Prev;
  131       Last->Next = L->First;
  132       Last = L->Last;
  132       Last = L->Last;
  179       Last->Next = X;
  181     X->Prev = Last;
  182     Last = X;
  216     if (Last == X) {
  218       Last = Prev;