Home
last modified time | relevance | path

Searched refs:op2 (Results 1 – 9 of 9) sorted by relevance

/original-bsd/old/awk/
H A Dawk.g.y135 { PUTS("index(e,e)"); $$ = op2(INDEX, $3, $5); }
137 | term '+' term { PUTS("t+t"); $$ = op2(ADD, $1, $3); }
138 | term '-' term { PUTS("t-t"); $$ = op2(MINUS, $1, $3); }
139 | term '*' term { PUTS("t*t"); $$ = op2(MULT, $1, $3); }
140 | term '/' term { PUTS("t/t"); $$ = op2(DIVIDE, $1, $3); }
141 | term '%' term { PUTS("t%t"); $$ = op2(MOD, $1, $3); }
152 | expr term { PUTS("expr term"); $$ = op2(CAT, $1, $2); }
213 | '^' { PUTS("regex ^"); $$ = op2(CHAR, (node *) 0, HAT); }
215 | r OR r { PUTS("regex OR"); $$ = op2(OR, $1, $3); }
217 { PUTS("regex CAT"); $$ = op2(CAT, $1, $2); }
[all …]
H A Db.c16 extern node *op2();
58 p1 = op2(CAT, op2(STAR, op2(DOT, (node *) 0, (node *) 0), (node *) 0), p);
60 p1 = op2(FINAL, p1, (node *) 0); /* install FINAL node */
H A Dparse.c86 node *op2(a,b,c) node *b, *c; in op2() function
/original-bsd/old/cpp/
H A Dyylex.c16 static char *op2[]={"||", "&&" , ">>", "<<", ">=", "<=", "!=", "=="}; in yylex() local
36 for (p2=op2+8; --p2>=op2; ) /* check 2-char ops */ in yylex()
37 if (0==strcmp(*p2,inp)) {val=val2[p2-op2]; goto ret;} in yylex()
/original-bsd/games/hack/
H A Dhack.options.c29 register char *op,*op2; local
38 op2 = op;
40 if(*op != ' ') *op2++ = *op;
/original-bsd/sys/sparc/include/
H A Dinstr.h241 #define _I_OP2(high, op2, low) \ argument
242 _I_ANY(IOP_OP2, (high) << 25 | (op2) << 22 | (low))
243 #define _I_IMM22(rd, op2, imm) \ argument
244 _I_ANY(IOP_OP2, (rd) << 25 | (op2) << 22 | (imm))
245 #define _I_BRANCH(a, c, op2, disp) \ argument
246 _I_ANY(IOP_OP2, (a) << 29 | (c) << 25 | (op2) << 22 | (disp))
/original-bsd/contrib/gcc-2.3.3/
H A Dc-typeck.c3418 build_conditional_expr (ifexp, op1, op2) in build_conditional_expr() argument
3419 tree ifexp, op1, op2; in build_conditional_expr()
3448 if (TREE_TYPE (op1) == TREE_TYPE (op2)
3454 return (integer_zerop (ifexp) ? op2 : op1);
3465 op2 = default_conversion (op2);
3469 type2 = TREE_TYPE (op2);
3520 if (! integer_zerop (op2))
3524 op2 = null_pointer_node;
3566 if (result_type != TREE_TYPE (op2))
3567 op2 = convert (result_type, op2);
[all …]
/original-bsd/contrib/awk.research/
H A Dproto.h73 extern Node *op2(int, Node *, Node *);
/original-bsd/contrib/emacs-18.57/src/
H A Ddispnew.c836 register unsigned char *obody, *nbody, *op1, *op2, *np1; local
995 op2 = op1 + begmatch - min (olen - osp, nlen - nsp);
996 while (op1 > op2 && op1[-1] == np1[-1])