Lines Matching defs:other
138 bool InterferesWith(const InstructionOperand& other) const;
143 bool operator==(InstructionOperand& other) const { return Equals(other); }
144 bool operator!=(InstructionOperand& other) const { return !Equals(other); }
195 // The register allocator is free to assign the same register to some other
201 // other operand inside instruction.
252 UnallocatedOperand(const UnallocatedOperand& other, int virtual_register) {
255 other.value_, static_cast<uint32_t>(virtual_register));
303 // [basic_policy]: Distinguish between FIXED_SLOT and all other policies.
353 // For all other (extended) policies:
1075 bool IsNext(const RpoNumber other) const {
1077 return other.index_ == this->index_ + 1;
1086 bool operator==(RpoNumber other) const { return index_ == other.index_; }
1087 bool operator!=(RpoNumber other) const { return index_ != other.index_; }
1088 bool operator>(RpoNumber other) const { return index_ > other.index_; }
1089 bool operator<(RpoNumber other) const { return index_ < other.index_; }
1090 bool operator<=(RpoNumber other) const { return index_ <= other.index_; }
1091 bool operator>=(RpoNumber other) const { return index_ >= other.index_; }
1291 bool operator!=(const iterator& other) const {
1292 return field_iterator != other.field_iterator;
1294 bool operator==(const iterator& other) const {
1295 return field_iterator == other.field_iterator;