Lines Matching defs:list_
46 : list_(reg1.GetBit() | reg2.GetBit() | reg3.GetBit() | reg4.GetBit()),
54 : list_(list), size_(size), type_(type) {
64 : list_((UINT64_C(1) << (last_reg + 1)) - 1), size_(size), type_(type) {
70 list_ &= ~((UINT64_C(1) << first_reg) - 1);
117 list_ |= other.GetList();
127 list_ &= ~other.GetList();
148 list_ |= (UINT64_C(1) << code);
154 list_ &= ~(UINT64_C(1) << code);
160 return CPURegList(list_1.type_, list_1.size_, list_1.list_ | list_2.list_);
174 return CPURegList(list_1.type_, list_1.size_, list_1.list_ & list_2.list_);
185 return (type_ == other.type_) && ((list_ & other.list_) != 0);
192 return list_;
198 list_ = new_list;
226 return list_ == 0;
236 return (((static_cast<RegList>(1) << code) & list_) != 0);
241 return CountSetBits(list_);
286 RegList list_;