Searched defs:BitsSet (Results 1 – 3 of 3) sorted by relevance
53 struct BitsSet : public std::set<std::tuple<Bit, Ignored...>, tc<std::tuple<Bit, Ignored...>>> struct55 typedef Bit bit_type;56 typedef Flag flag_type;57 typedef std::tuple<Bit, Ignored...> value_type;58 typedef std::set<value_type, tc<value_type>> base;59 typedef typename base::const_iterator const_iterator;60 BitsSet(std::initializer_list<value_type> list) : base(list) {} in BitsSet() function61 BitsSet(BitsSet&& other) : base(std::forward<BitsSet>(other)) {} in BitsSet() function62 BitsSet(const BitsSet& other) : base(other) {} in BitsSet() argument64 BitsSet& operator=(const BitsSet& other) { in operator =()[all …]
3250 unsigned BitsSet = 0; in AdjustInstrPostInstrSelection() local
10214 unsigned BitsSet = countPopulation(NewDmask); in adjustWritemask() local