Lines Matching refs:sym2
316 struct symbol *sym1, *sym2; in expr_join_or() local
334 sym2 = e2->left.expr->left.sym; in expr_join_or()
336 sym2 = e2->left.sym; in expr_join_or()
337 if (sym1 != sym2) in expr_join_or()
381 struct symbol *sym1, *sym2; in expr_join_and() local
399 sym2 = e2->left.expr->left.sym; in expr_join_and()
401 sym2 = e2->left.sym; in expr_join_and()
402 if (sym1 != sym2) in expr_join_and()
425 sym2 = e1->right.sym; in expr_join_and()
426 if ((e2->right.sym->flags & SYMBOL_CONST) && (sym2->flags & SYMBOL_CONST)) in expr_join_and()
427 return sym2 != e2->right.sym ? expr_alloc_comp(E_EQUAL, sym1, sym2) in expr_join_and()
432 sym2 = e2->right.sym; in expr_join_and()
433 if ((e1->right.sym->flags & SYMBOL_CONST) && (sym2->flags & SYMBOL_CONST)) in expr_join_and()
434 return sym2 != e1->right.sym ? expr_alloc_comp(E_EQUAL, sym1, sym2) in expr_join_and()