Lines Matching refs:dobj
158 drawfile_object *dobj; in DrawF_Path() local
179 dobj=(drawfile_object*)((char*)diag+self->size); in DrawF_Path()
180 dobj->type=drawfile_TYPE_PATH; in DrawF_Path()
181 dobj->size=size; in DrawF_Path()
182 dpath=&dobj->data.path; in DrawF_Path()
248 drawfile_object *dobj; in DrawF_Text() local
258 dobj=(drawfile_object*)((char*)diag+self->size); in DrawF_Text()
259 dobj->type=drawfile_TYPE_TEXT; in DrawF_Text()
260 dobj->size=size; in DrawF_Text()
261 dtext=&dobj->data.text; in DrawF_Text()
287 drawfile_object *dobj; in DrawF_TText() local
300 dobj=(drawfile_object*)((char*)diag+self->size); in DrawF_TText()
301 dobj->type=drawfile_TYPE_TRFM_TEXT; in DrawF_TText()
302 dobj->size=size; in DrawF_TText()
303 dtext=&dobj->data.trfm_text; in DrawF_TText()
332 drawfile_object *dobj; in DrawF_FontTable() local
344 dobj=(drawfile_object*)((char*)diag+self->size); in DrawF_FontTable()
345 dobj->type=drawfile_TYPE_FONT_TABLE; in DrawF_FontTable()
346 dobj->size=size; in DrawF_FontTable()
347 dtable=(char*)(&dobj->data.font_table); in DrawF_FontTable()
366 drawfile_object *dobj; in DrawF_Group() local
375 dobj=(drawfile_object*)((char*)diag+self->size); in DrawF_Group()
377 dobj->type=drawfile_TYPE_GROUP; in DrawF_Group()
378 dobj->size=g->size-4; in DrawF_Group()
379 dgroup=&dobj->data.group; in DrawF_Group()