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
53 constexpr CPURegList(CPURegister::RegisterType type, unsigned size, RegList list)
54 : list_(list), size_(size), type_(type) {
90 RegList list = (static_cast<RegList>(1) << number_of_registers) - 1;
93 list |= (static_cast<RegList>(1) << kSPRegInternalCode);
95 return CPURegList(type, GetDefaultSizeFor(type, size), list);
111 // this list are left unchanged. The type and size of the registers in the
112 // 'other' list must match those in this list.
121 // do not exist in this list are ignored. The type and size of the registers
122 // in the 'other' list must match those in this list.
144 // the type and size of the register is inferred from this list.
194 VIXL_DEPRECATED("GetList", RegList list() const) { return GetList(); }
204 // Remove all callee-saved registers from the list. This can be useful when
208 // Find the register in this list that appears in `mask` with the lowest or
209 // highest code, remove it from the list and return it as a CPURegister. If
210 // the list is empty, leave it unchanged and return NoCPUReg.