Lines Matching defs:list
8 // this list of conditions and the following disclaimer.
10 // this list of conditions and the following disclaimer in the documentation
2836 // list is a multiple of 16 bytes.
2985 { // A kNone-terminated list of features.
3085 void UseScratchRegisterScope::Include(const CPURegList& list) {
3088 // Including an empty list has no effect.
3089 if (list.IsEmpty()) return;
3090 VIXL_ASSERT(list.GetType() != CPURegister::kNoRegister);
3092 RegList reg_list = list.GetList();
3093 if (list.GetType() == CPURegister::kRegister) {
3094 // Make sure that neither sp nor xzr are included the list.
3098 IncludeByRegList(GetAvailableListFor(list.GetBank()), reg_list);
3109 // Make sure that neither sp nor xzr are included the list.
3161 void UseScratchRegisterScope::Exclude(const CPURegList& list) {
3162 ExcludeByRegList(GetAvailableListFor(list.GetBank()), list.GetList());