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
34 RegList list = list_ & mask;
35 if (list == 0) return NoCPUReg;
36 int index = CountTrailingZeros(list);
37 VIXL_ASSERT(((static_cast<RegList>(1) << index) & list) != 0);
44 RegList list = list_ & mask;
45 if (list == 0) return NoCPUReg;
46 int index = CountLeadingZeros(list);
48 VIXL_ASSERT(((static_cast<RegList>(1) << index) & list) != 0);
60 // Try to create a CPURegister for each element in the list.
79 // The list must already be empty, so do nothing.