Lines Matching defs:that
45 // If fewer of 1/8 of the array is empty (meaning that many are filled with
101 // prefer to return it than something that would require more probing.
141 const SmallPtrSetImplBase &that) {
142 IsSmall = that.isSmall();
148 CurArray = (const void**)safe_malloc(sizeof(void*) * that.CurArraySize);
151 // Copy over the that array.
152 copyHelper(that);
158 SmallPtrSetImplBase &&that) {
159 moveHelper(SmallStorage, SmallSize, RHSSmallStorage, std::move(that));
253 // FIXME: From here on we assume that both sets have the same small size.