Home
last modified time | relevance | path

Searched refs:cx_or (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/usr.bin/config/
H A Dutil.c409 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()
H A Dfiles.c581 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()
H A Dgram.y1314 cx->cx_or.left = left; in mk_cx_or()
1315 cx->cx_or.right = right; in mk_cx_or()
H A Ddefs.h406 #define cx_or cx_u.or macro