Lines Matching full:mixed
314 bool Mixed; // a mixed region contains both set and unset bits member in __anonfc09cd8b0311::Filter
333 Filter(FilterChooser &owner, unsigned startBit, unsigned numBits, bool mixed);
556 void runSingleFilter(unsigned startBit, unsigned numBit, bool mixed);
588 : Owner(f.Owner), StartBit(f.StartBit), NumBits(f.NumBits), Mixed(f.Mixed), in Filter()
595 bool mixed) in Filter() argument
596 : Owner(&owner), StartBit(startBit), NumBits(numBits), Mixed(mixed) { in Filter()
1552 bool mixed) { in runSingleFilter() argument
1612 // States: NONE, FILTERED, ALL_SET, ALL_UNSET, and MIXED. in filterProcessor()
1618 // (ALL_SET) ---- _ ----> (MIXED) in filterProcessor()
1619 // (ALL_UNSET) -- [01] -> (MIXED) in filterProcessor()
1621 // (MIXED) ------ . ----> (MIXED) in filterProcessor()
1667 // States: NONE, ALL_SET, MIXED in filterProcessor()
1673 // (NONE) ----- M --> (MIXED) ; and set region start in filterProcessor()
1677 // (ALL_SET) -- M --> (MIXED) ; and report an ALL_SET region in filterProcessor()
1678 // (MIXED) ---- F --> (NONE) ; and report a MIXED region in filterProcessor()
1679 // (MIXED) ---- S --> (ALL_SET) ; and report a MIXED region in filterProcessor()
1680 // (MIXED) ---- U --> (NONE) ; and report a MIXED region in filterProcessor()
1681 // (MIXED) ---- M --> (MIXED) in filterProcessor()
1760 // At the end, if we're still in ALL_SET or MIXED states, report a region in filterProcessor()
1811 // Then regions of mixed bits (both known and unitialized bit values allowed). in doFilter()