Lines Matching refs:Cond

274         self.jump_conditional(Cond::Abs, Source::Imm)  in jump_unconditional()
278 pub fn jump_conditional(&mut self, cond: Cond, src_bit: Source) -> Jump { in jump_conditional() argument
531 cond: Cond,
563 pub enum Cond { enum
687 .jump_conditional(Cond::Equals, Source::Reg) in jump_on_dst_equals_src()
702 .jump_conditional(Cond::Greater, Source::Reg) in jump_on_dst_greater_than_src()
717 .jump_conditional(Cond::GreaterEquals, Source::Reg) in jump_on_dst_greater_or_equals_to_src()
732 .jump_conditional(Cond::Lower, Source::Reg) in jump_on_dst_lower_than_src()
747 .jump_conditional(Cond::LowerEquals, Source::Reg) in jump_on_dst_lower_or_equals_to_src()
762 .jump_conditional(Cond::BitAnd, Source::Reg) in jump_on_dst_bit_and_with_src_not_equal_zero()
777 .jump_conditional(Cond::NotEquals, Source::Reg) in jump_on_dst_not_equals_src()
792 .jump_conditional(Cond::GreaterSigned, Source::Reg) in jump_on_dst_greater_than_src_signed()
807 .jump_conditional(Cond::GreaterEqualsSigned, Source::Reg) in jump_on_dst_greater_or_equals_src_signed()
822 .jump_conditional(Cond::LowerSigned, Source::Reg) in jump_on_dst_lower_than_src_signed()
837 .jump_conditional(Cond::LowerEqualsSigned, Source::Reg) in jump_on_dst_lower_or_equals_src_signed()
868 .jump_conditional(Cond::Equals, Source::Imm) in jump_on_dst_equals_const()
883 .jump_conditional(Cond::Greater, Source::Imm) in jump_on_dst_greater_than_const()
898 .jump_conditional(Cond::GreaterEquals, Source::Imm) in jump_on_dst_greater_or_equals_to_const()
913 .jump_conditional(Cond::Lower, Source::Imm) in jump_on_dst_lower_than_const()
928 .jump_conditional(Cond::LowerEquals, Source::Imm) in jump_on_dst_lower_or_equals_to_const()
943 .jump_conditional(Cond::BitAnd, Source::Imm) in jump_on_dst_bit_and_with_const_not_equal_zero()
957 .jump_conditional(Cond::NotEquals, Source::Imm) in jump_on_dst_not_equals_const()
971 .jump_conditional(Cond::GreaterSigned, Source::Imm) in jump_on_dst_greater_than_const_signed()
985 .jump_conditional(Cond::GreaterEqualsSigned, Source::Imm) in jump_on_dst_greater_or_equals_src_signed()
999 .jump_conditional(Cond::LowerSigned, Source::Imm) in jump_on_dst_lower_than_const_signed()
1013 .jump_conditional(Cond::LowerEqualsSigned, Source::Imm) in jump_on_dst_lower_or_equals_src_signed()