Lines Matching defs:Small
893 unsigned Small : 1;
903 /// a large bucket. This union will be discriminated by the 'Small' bit.
945 if (Small && RHS.Small) {
974 if (!Small && !RHS.Small) {
980 SmallDenseMap &SmallSide = Small ? *this : RHS;
981 SmallDenseMap &LargeSide = Small ? RHS : *this;
986 LargeSide.Small = true;
1005 SmallSide.Small = false;
1026 Small = true;
1028 Small = false;
1035 Small = true;
1037 Small = false;
1047 if (Small) {
1074 Small = false;
1084 Small = true;
1108 if ((Small && NewNumBuckets <= InlineBuckets) ||
1109 (!Small && NewNumBuckets == getLargeRep()->NumBuckets)) {
1132 assert(Small);
1145 assert(!Small);
1156 return Small ? getInlineBuckets() : getLargeRep()->Buckets;
1165 return Small ? InlineBuckets : getLargeRep()->NumBuckets;
1169 if (Small)