Lines Matching refs:condition
1584 sljit_si flags, tmp_src, condition; in sljit_emit_cmp() local
1590 condition = type & 0xff; in sljit_emit_cmp()
1592 if ((condition == SLJIT_EQUAL || condition == SLJIT_NOT_EQUAL)) { in sljit_emit_cmp()
1606 switch (condition) { in sljit_emit_cmp()
1608 condition = SLJIT_GREATER; in sljit_emit_cmp()
1611 condition = SLJIT_LESS_EQUAL; in sljit_emit_cmp()
1614 condition = SLJIT_LESS; in sljit_emit_cmp()
1617 condition = SLJIT_GREATER_EQUAL; in sljit_emit_cmp()
1620 condition = SLJIT_SIG_GREATER; in sljit_emit_cmp()
1623 condition = SLJIT_SIG_LESS_EQUAL; in sljit_emit_cmp()
1626 condition = SLJIT_SIG_LESS; in sljit_emit_cmp()
1629 condition = SLJIT_SIG_GREATER_EQUAL; in sljit_emit_cmp()
1632 type = condition | (type & (SLJIT_INT_OP | SLJIT_REWRITABLE_JUMP)); in sljit_emit_cmp()
1641 if (condition <= SLJIT_NOT_ZERO) in sljit_emit_cmp()
1643 else if (condition <= SLJIT_LESS_EQUAL) in sljit_emit_cmp()
1658 return sljit_emit_jump(compiler, condition | (type & SLJIT_REWRITABLE_JUMP)); in sljit_emit_cmp()
1665 sljit_si flags, condition; in sljit_emit_fcmp() local
1670 condition = type & 0xff; in sljit_emit_fcmp()
1671 flags = (condition <= SLJIT_D_NOT_EQUAL) ? SLJIT_SET_E : SLJIT_SET_S; in sljit_emit_fcmp()
1685 return sljit_emit_jump(compiler, condition | (type & SLJIT_REWRITABLE_JUMP)); in sljit_emit_fcmp()