Lines Matching defs:list
8 // this list of conditions and the following disclaimer.
10 // notice, this list of conditions and the following disclaimer in the
160 void UseScratchRegisterScope::Include(const RegisterList& list) {
163 uint32_t mask = list.GetList() & ~excluded_registers.GetList();
169 void UseScratchRegisterScope::Include(const VRegisterList& list) {
172 available->SetList(available->GetList() | list.GetList());
176 void UseScratchRegisterScope::Exclude(const RegisterList& list) {
179 available->SetList(available->GetList() & ~list.GetList());
183 void UseScratchRegisterScope::Exclude(const VRegisterList& list) {
186 available->SetList(available->GetList() & ~list.GetList());