Home
last modified time | relevance | path

Searched refs:code3 (Results 1 – 2 of 2) sorted by relevance

/plan9/sys/src/cmd/hoc/
H A Dhoc.y4 #define code3(c1,c2,c3) code(c1); code(c2); code(c3) macro
36 asgn: VAR '=' expr { code3(varpush,(Inst)$1,assign); $$=$3; }
37 | VAR ADDEQ expr { code3(varpush,(Inst)$1,addeq); $$=$3; }
38 | VAR SUBEQ expr { code3(varpush,(Inst)$1,subeq); $$=$3; }
39 | VAR MULEQ expr { code3(varpush,(Inst)$1,muleq); $$=$3; }
40 | VAR DIVEQ expr { code3(varpush,(Inst)$1,diveq); $$=$3; }
41 | VAR MODEQ expr { code3(varpush,(Inst)$1,modeq); $$=$3; }
48 { $$ = $2; code3(call, (Inst)$1, (Inst)$4); }
69 while: WHILE { $$ = code3(whilecode,STOP,STOP); }
71 for: FOR { $$ = code(forcode); code3(STOP,STOP,STOP); code(STOP); }
[all …]
/plan9/sys/src/cmd/gs/src/
H A Dgdevpdfi.c992 int code3 = gs_closedevice((gx_device *)cvd); in pdf_image_end_image_cvd() local
996 return code < 0 ? code : code1 < 0 ? code1 : code2 < 0 ? code2 : code3; in pdf_image_end_image_cvd()