Lines Matching refs:GetBit
169 VIXL_CHECK(x0.GetBit() == (UINT64_C(1) << 0));
170 VIXL_CHECK(x1.GetBit() == (UINT64_C(1) << 1));
171 VIXL_CHECK(x10.GetBit() == (UINT64_C(1) << 10));
174 VIXL_CHECK(lr.GetBit() == (UINT64_C(1) << kLinkRegCode));
177 VIXL_CHECK(xzr.GetBit() == (UINT64_C(1) << kZeroRegCode));
180 VIXL_CHECK(sp.GetBit() == (UINT64_C(1) << kSPRegInternalCode));
181 VIXL_CHECK(sp.GetBit() != xzr.GetBit());
183 // xn.GetBit() == wn.GetBit() at all times, for the same n.
184 VIXL_CHECK(x0.GetBit() == w0.GetBit());
185 VIXL_CHECK(x1.GetBit() == w1.GetBit());
186 VIXL_CHECK(x10.GetBit() == w10.GetBit());
187 VIXL_CHECK(xzr.GetBit() == wzr.GetBit());
188 VIXL_CHECK(sp.GetBit() == wsp.GetBit());
1323 if (type == CPURegister::kRegister) list &= ~(xzr.GetBit() | sp.GetBit());