Home
last modified time | relevance | path

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

/original-bsd/sys/sparc/include/
H A Dinstr.h254 #define _I_OP3_GEN(form, rd, op3, rs1, low14) \ argument
256 #define _I_OP3_LS_RAR(rd, op3, rs1, asi, rs2) \ argument
258 #define _I_OP3_LS_RI(rd, op3, rs1, simm13) \ argument
259 _I_OP3_GEN(IOP_mem, rd, op3, rs1, _I_SIMM(simm13))
260 #define _I_OP3_LS_RR(rd, op3, rs1, rs2) \ argument
261 _I_OP3_GEN(IOP_mem, rd, op3, rs1, rs2)
262 #define _I_OP3_R_RAR(rd, op3, rs1, asi, rs2) \ argument
264 #define _I_OP3_R_RI(rd, op3, rs1, simm13) \ argument
265 _I_OP3_GEN(IOP_reg, rd, op3, rs1, _I_SIMM(simm13))
266 #define _I_OP3_R_RR(rd, op3, rs1, rs2) \ argument
[all …]
/original-bsd/old/awk/
H A Dawk.g.y127 { PUTS("substr(e,e,e)"); $$ = op3(SUBSTR, $3, $5, $7); }
129 { PUTS("substr(e,e,e)"); $$ = op3(SUBSTR, $3, $5, nullstat); }
131 { PUTS("split(e,e,e)"); $$ = op3(SPLIT, $3, $5, $7); }
133 { PUTS("split(e,e,e)"); $$ = op3(SPLIT, $3, $5, nullstat); }
H A Dparse.c107 node *op3(a,b,c,d) node *b, *c, *d; in op3() function
/original-bsd/contrib/awk.research/
H A Dproto.h76 extern Node *op3(int, Node *, Node *, Node *);