Searched refs:cx_or (Results 1 – 4 of 4) sorted by relevance
409 cx->cx_or.left = NULL; in condexpr_create() 410 cx->cx_or.right = NULL; in condexpr_create() 441 condexpr_destroy(expr->cx_or.left); in condexpr_destroy() 442 condexpr_destroy(expr->cx_or.right); in condexpr_destroy()
581 lhs = expr_eval(expr->cx_or.left, fn, ctx); in expr_eval()582 rhs = expr_eval(expr->cx_or.right, fn, ctx); in expr_eval()
1314 cx->cx_or.left = left; in mk_cx_or()1315 cx->cx_or.right = right; in mk_cx_or()
406 #define cx_or cx_u.or macro