Searched refs:cmpop (Results 1 – 8 of 8) sorted by relevance
/third_party/mksh/ |
D | expr.c | 407 #define cmpop(op) (es->natural ? \ in evalexpr() macro 482 res = cmpop(<); in evalexpr() 485 res = cmpop(<=); in evalexpr() 488 res = cmpop(>); in evalexpr() 491 res = cmpop(>=); in evalexpr() 535 #undef cmpop in evalexpr()
|
/third_party/elfutils/libcpu/ |
D | riscv_disasm.c | 870 uint32_t cmpop = (word >> 12) & 0x7; in riscv_disasm() local 871 if (cmpop < 3) in riscv_disasm() 877 char *cp = stpcpy (mnebuf, mnefpcmp[cmpop]); in riscv_disasm() 889 uint32_t cmpop = (word >> 12) & 0x7; in riscv_disasm() local 890 if (cmpop < 3) in riscv_disasm() 903 char *cp = stpcpy (mnebuf, rs1 == rs2 ? altsignmne[cmpop] : mnefpcmp[cmpop]); in riscv_disasm()
|
/third_party/python/Parser/ |
D | Python.asdl | 75 | Compare(expr left, cmpop* ops, expr* comparators) 104 cmpop = Eq | NotEq | Lt | LtE | Gt | GtE | Is | IsNot | In | NotIn
|
D | pegen.c | 1721 _PyPegen_cmpop_expr_pair(Parser *p, cmpop_ty cmpop, expr_ty expr) in _PyPegen_cmpop_expr_pair() argument 1728 a->cmpop = cmpop; in _PyPegen_cmpop_expr_pair() 1745 asdl_seq_SET(new_seq, i, pair->cmpop); in _PyPegen_get_cmpops() 2528 cmpop_ty cmpop = (cmpop_ty) asdl_seq_GET(e->v.Compare.ops, 0); in _PyPegen_get_invalid_target() local 2529 if (cmpop == In) { in _PyPegen_get_invalid_target()
|
D | pegen.h | 82 cmpop_ty cmpop; member
|
/third_party/ltp/tools/sparse/sparse-src/ |
D | linearize.c | 1757 static const int cmpop[] = { in linearize_compare() local 1769 int op = opcode_float(cmpop[expr->op], itype); in linearize_compare()
|
/third_party/python/Lib/test/ |
D | test_ast.py | 684 …self.assertEqual(ast.cmpop.__doc__, "cmpop = Eq | NotEq | Lt | LtE | Gt | GtE | Is | IsNot | In | …
|
/third_party/python/Doc/library/ |
D | ast.rst | 1882 of :class:`ast.operator`, :class:`ast.unaryop`, :class:`ast.cmpop`,
|