Home | History | Annotate | Download | only in Support

Lines Matching full:tombstone

94   // Set this as a tombstone.
106 const void *const *Tombstone = 0;
113 // Return a tombstone if we've seen one so far, or the empty bucket if
116 return Tombstone ? Tombstone : Array+Bucket;
118 // If this is a tombstone, remember it. If Ptr ends up not in the set, we
120 if (Array[Bucket] == getTombstoneMarker() && !Tombstone)
121 Tombstone = Array+Bucket; // Remember the first tombstone found.
123 // It's a hash collision or a tombstone. Reprobe.