Home | History | Annotate | Download | only in src

Lines Matching refs:bitset

112 // Get the smallest bitset subsuming this type.
118 int bitset = kNone;
120 bitset |= union_get(unioned, i)->LubBitset();
122 return bitset;
219 // Get the largest bitset subsumed by this type.
264 if (this->is_bitset()) break; // Fast fail, no other field is a bitset.
380 int bitset = type1->GlbBitset() | type2->GlbBitset();
381 if (bitset != kNone) unioned->set(size++, from_bitset(bitset));
457 int bitset = type1->GlbBitset() & type2->GlbBitset();
458 if (bitset != kNone) unioned->set(size++, from_bitset(bitset));