Lines Matching refs:exprtest
54 static int exprtest(NODE *np);
1098 return (intnode(exprtest(np->n_left) == 0 ? (INT)1 : (INT)0)); in exprreduce()
1101 return ((exprtest(np->n_left) != 0 && in exprreduce()
1102 exprtest(np->n_right) != 0) ? const1 : const0); in exprreduce()
1105 return ((exprtest(np->n_left) != 0 || in exprreduce()
1106 exprtest(np->n_right) != 0) ? const1 : const0); in exprreduce()
1126 if (exprtest(np->n_left)) in exprreduce()
1859 test = exprtest(np->n_left); in s_if()
1881 if (exprtest(np->n_left) == 0) in s_while()
1917 if (exprtest(testnp) == 0) in s_for()
2073 exprtest(NODE *np) in exprtest() function