Lines Matching refs:E_NOT

78 	case E_NOT:  in expr_copy()
114 case E_NOT: in expr_free()
216 case E_NOT: in expr_eq()
339 case E_NOT: in expr_trans_bool()
368 if (e1->type != E_EQUAL && e1->type != E_UNEQUAL && e1->type != E_SYMBOL && e1->type != E_NOT) in expr_join_or()
370 if (e2->type != E_EQUAL && e2->type != E_UNEQUAL && e2->type != E_SYMBOL && e2->type != E_NOT) in expr_join_or()
372 if (e1->type == E_NOT) { in expr_join_or()
379 if (e2->type == E_NOT) { in expr_join_or()
410 if ((e1->type == E_NOT && e1->left.expr->type == E_SYMBOL && e2->type == E_SYMBOL) || in expr_join_or()
411 (e2->type == E_NOT && e2->left.expr->type == E_SYMBOL && e1->type == E_SYMBOL)) in expr_join_or()
432 if (e1->type != E_EQUAL && e1->type != E_UNEQUAL && e1->type != E_SYMBOL && e1->type != E_NOT) in expr_join_and()
434 if (e2->type != E_EQUAL && e2->type != E_UNEQUAL && e2->type != E_SYMBOL && e2->type != E_NOT) in expr_join_and()
436 if (e1->type == E_NOT) { in expr_join_and()
443 if (e2->type == E_NOT) { in expr_join_and()
620 e->type = E_NOT; in expr_transform()
654 e->type = E_NOT; in expr_transform()
660 case E_NOT: in expr_transform()
662 case E_NOT: in expr_transform()
698 e->right.expr = expr_alloc_one(E_NOT, tmp->right.expr); in expr_transform()
699 tmp->type = E_NOT; in expr_transform()
707 e->right.expr = expr_alloc_one(E_NOT, tmp->right.expr); in expr_transform()
708 tmp->type = E_NOT; in expr_transform()
771 case E_NOT: in expr_contains_symbol()
815 e = expr_alloc_one(E_NOT, e); in expr_trans_compare()
827 e = expr_alloc_one(E_NOT, e); in expr_trans_compare()
837 e = expr_alloc_one(E_NOT, e); in expr_trans_compare()
839 case E_NOT: in expr_trans_compare()
853 return expr_alloc_one(E_NOT, expr_copy(e)); in expr_trans_compare()
856 return expr_alloc_one(E_NOT, expr_copy(e)); in expr_trans_compare()
940 case E_NOT: in expr_calc_value()
1010 if (t2 == E_NOT) in expr_compare_type()
1012 case E_NOT: in expr_compare_type()
1089 case E_NOT: in expr_print()
1091 expr_print(e->left.expr, fn, data, E_NOT); in expr_print()