Home | History | Annotate | Download | only in utils

Lines Matching refs:other

50   ManagedRegister(const ManagedRegister& other) : id_(other.id_) { }
52 ManagedRegister& operator=(const ManagedRegister& other) {
53 id_ = other.id_;
65 bool Equals(const ManagedRegister& other) const {
66 return id_ == other.id_;
92 ManagedRegisterSpill(const ManagedRegister& other, uint32_t size, uint32_t spill_offset)
93 : ManagedRegister(other), size_(size), spill_offset_(spill_offset) { }
95 explicit ManagedRegisterSpill(const ManagedRegister& other)
96 : ManagedRegister(other), size_(-1), spill_offset_(-1) { }
98 ManagedRegisterSpill(const ManagedRegister& other, int32_t size)
99 : ManagedRegister(other), size_(size), spill_offset_(-1) { }