Lines Matching full:small
1 //===- llvm/ADT/SmallPtrSet.cpp - 'Normally small' pointer set ------------===//
24 assert(!isSmall() && "Can't shrink a small set!");
45 // Nope, there isn't. If we stay small, just 'pushback' now.
145 // Small sets store their elements in order.
170 // If we're becoming small, prepare to insert into our stack space
190 /// type, but may have a different small size.
194 "Cannot assign sets with different small sizes");
196 // If we're becoming small, prepare to insert into our stack space
223 // We can only avoid copying elements if neither set is small.
232 // FIXME: From here on we assume that both sets have the same small size.
234 // If only RHS is small, copy the small elements into LHS and move the pointer
248 // If only LHS is small, copy the small elements into RHS and move the pointer
262 // Both a small, just swap the small elements.