Lines Matching defs:other
40 inline bool CPURegister::IsSameSizeAndType(const CPURegister& other) const {
41 return (reg_size_ == other.reg_size_) && (reg_type_ == other.reg_type_);
54 inline void CPURegList::Combine(const CPURegList& other) {
55 DCHECK(other.type() == type_);
56 DCHECK(other.RegisterSizeInBits() == size_);
57 list_ |= other.list_;
60 inline void CPURegList::Remove(const CPURegList& other) {
61 if (other.type() == type_) {
62 list_ &= ~other.list_;
66 inline void CPURegList::Combine(const CPURegister& other) {
67 DCHECK(other.type() == type_);
68 DCHECK(other.SizeInBits() == size_);
69 Combine(other.code());