Lines Matching defs:t_wp
166 static char **t_wp;
312 t_wp = &argv[1];
313 res = !oexpr(t_lex(*t_wp));
315 if (*t_wp != NULL && *++t_wp != NULL)
316 syntax(*t_wp, "unexpected operator");
426 if (*t_wp == NULL)
428 if (t_lex(*++t_wp) == BOR)
429 return oexpr(t_lex(*++t_wp)) || res;
430 t_wp--;
440 if (*t_wp == NULL)
442 if (t_lex(*++t_wp) == BAND)
443 return aexpr(t_lex(*++t_wp)) && res;
444 t_wp--;
453 return !nexpr(t_lex(*++t_wp));
466 if ((nn = t_lex(*++t_wp)) == RPAREN)
469 if (t_lex(*++t_wp) != RPAREN)
475 if (*++t_wp == NULL)
477 return perform_unop(n, *t_wp);
480 if (t_lex(t_wp[1]), t_wp_op && t_wp_op->op_type == BINOP) {
484 return strlen(*t_wp) > 0;
510 opnd1 = *t_wp;
511 (void) t_lex(*++t_wp);
514 if ((opnd2 = *++t_wp) == NULL)
826 (op->op_num == LPAREN && *(t_wp+1) == 0))) {
841 if ((s = *(t_wp+1)) == 0)
843 if ((t = *(t_wp+2)) == 0)