Searched defs:Overlaps (Results 1 - 6 of 6) sorted by relevance

/art/compiler/utils/mips64/
H A Dmanaged_register_mips64.cc24 bool Mips64ManagedRegister::Overlaps(const Mips64ManagedRegister& other) const { function in class:art::mips64::Mips64ManagedRegister
/art/compiler/utils/arm/
H A Dmanaged_register_arm.cc25 bool ArmManagedRegister::Overlaps(const ArmManagedRegister& other) const { function in class:art::arm::ArmManagedRegister
31 return ArmManagedRegister::FromCoreRegister(low).Overlaps(other) ||
32 ArmManagedRegister::FromCoreRegister(high).Overlaps(other);
45 return other.Overlaps(*this);
/art/compiler/utils/arm64/
H A Dmanaged_register_arm64.cc43 bool Arm64ManagedRegister::Overlaps(const Arm64ManagedRegister& other) const { function in class:art::arm64::Arm64ManagedRegister
/art/compiler/utils/mips/
H A Dmanaged_register_mips.cc24 bool MipsManagedRegister::Overlaps(const MipsManagedRegister& other) const { function in class:art::mips::MipsManagedRegister
32 return MipsManagedRegister::FromCoreRegister(low).Overlaps(other) ||
33 MipsManagedRegister::FromCoreRegister(high).Overlaps(other);
46 return other.Overlaps(*this);
/art/compiler/utils/x86/
H A Dmanaged_register_x86.cc62 bool X86ManagedRegister::Overlaps(const X86ManagedRegister& other) const { function in class:art::x86::X86ManagedRegister
70 return X86ManagedRegister::FromCpuRegister(low).Overlaps(other) ||
71 X86ManagedRegister::FromCpuRegister(high).Overlaps(other);
74 return other.Overlaps(*this);
/art/compiler/utils/x86_64/
H A Dmanaged_register_x86_64.cc57 bool X86_64ManagedRegister::Overlaps(const X86_64ManagedRegister& other) const { function in class:art::x86_64::X86_64ManagedRegister
65 return X86_64ManagedRegister::FromCpuRegister(low).Overlaps(other) ||
66 X86_64ManagedRegister::FromCpuRegister(high).Overlaps(other);
69 return other.Overlaps(*this);

Completed in 40 milliseconds