Searched refs:nr (Results 1 – 2 of 2) sorted by relevance
131 # define A64_DEFINE_REGISTERS(nr) \ argument132 rw##nr = RegStorage::k32BitSolo | RegStorage::kCoreRegister | nr, \133 rx##nr = RegStorage::k64BitSolo | RegStorage::kCoreRegister | nr, \134 rf##nr = RegStorage::k32BitSolo | RegStorage::kFloatingPoint | nr, \135 rd##nr = RegStorage::k64BitSolo | RegStorage::kFloatingPoint | nr,162 #define A64_DEFINE_REGSTORAGES(nr) \ argument163 constexpr RegStorage rs_w##nr(RegStorage::kValid | rw##nr); \164 constexpr RegStorage rs_x##nr(RegStorage::kValid | rx##nr); \165 constexpr RegStorage rs_f##nr(RegStorage::kValid | rf##nr); \166 constexpr RegStorage rs_d##nr(RegStorage::kValid | rd##nr);
255 int Bit(int nr) const { in Bit() argument256 return (InstructionBits() >> nr) & 1; in Bit()