Home
last modified time | relevance | path

Searched refs:cenum (Results 1 – 7 of 7) sorted by relevance

/plan9/sys/src/cmd/gs/src/
H A Dgdevpdfd.c231 gs_cpath_enum cenum; in pdf_is_same_clip_path() local
241 code = gx_cpath_enum_init(&cenum, (gx_clip_path *)pcpath); in pdf_is_same_clip_path()
244 while ((code = gx_cpath_enum_next(&cenum, vs0)) > 0) { in pdf_is_same_clip_path()
295 gs_path_enum *cenum, gdev_vector_dopath_state_t *state, in pdf_put_clip_path_list_elem() argument
301 int code = pdf_put_clip_path_list_elem(pdev, e->next, cenum, state, vs); in pdf_put_clip_path_list_elem()
306 gx_path_enum_init(cenum, &e->path); in pdf_put_clip_path_list_elem()
307 while ((pe_op = gx_path_enum_next(cenum, vs)) > 0) in pdf_put_clip_path_list_elem()
373 gs_cpath_enum cenum; in pdf_put_clip_path() local
381 gx_cpath_enum_init(&cenum, (gx_clip_path *) pcpath); in pdf_put_clip_path()
382 while ((pe_op = gx_cpath_enum_next(&cenum, vs)) > 0) in pdf_put_clip_path()
[all …]
H A Dgxcpath.c386 gs_cpath_enum cenum; in gx_cpath_to_path() local
392 gx_cpath_enum_init(&cenum, pcpath); in gx_cpath_to_path()
393 while ((code = gx_cpath_enum_next(&cenum, pts)) != 0) { in gx_cpath_to_path()
400 gx_cpath_enum_notes(&cenum)); in gx_cpath_to_path()
406 gx_cpath_enum_notes(&cenum)); in gx_cpath_to_path()
410 gx_cpath_enum_notes(&cenum)); in gx_cpath_to_path()
H A Dgxclpath.c1034 gs_path_enum cenum; in cmd_put_path() local
1105 gx_path_enum_init(&cenum, ppath); in cmd_put_path()
1122 int pe_op = gx_path_enum_next(&cenum, (gs_fixed_point *) vs); in cmd_put_path()
1142 gx_path_enum_backup(&cenum); in cmd_put_path()
1165 gx_path_enum_notes(&cenum) & keep_notes; in cmd_put_path()
1210 cpenum = cenum; in cmd_put_path()
1269 gx_path_enum_notes(&cenum) & keep_notes; in cmd_put_path()
H A Dgdevvec.c62 gs_path_enum cenum; in gdev_vector_dopath() local
98 gx_path_enum_init(&cenum, ppath); in gdev_vector_dopath()
101 int pe_op = gx_path_enum_next(&cenum, vs); in gdev_vector_dopath()
193 pe_op = gx_path_enum_next(&cenum, vs); in gdev_vector_dopath()
/plan9/sys/src/cmd/cc/
H A Ddcl.c1480 en.cenum = n->type; in doenum()
1481 en.tenum = maxtype(en.cenum, en.tenum); in doenum()
1483 if(!typefd[en.cenum->etype]) in doenum()
1492 if(en.cenum == T) { in doenum()
1494 en.cenum = types[TINT]; in doenum()
1497 s->tenum = en.cenum; in doenum()
H A Dcc.y1056 en.cenum = T;
1073 en.cenum = T;
H A Dcc.h424 Type* cenum; /* type of current enum run */ member