Lines Matching refs:tdesc

33 void forth_do_sou(struct tdesc *tdp, struct node *np);
34 void forth_do_enum(struct tdesc *tdp, struct node *np);
35 void forth_do_intrinsic(struct tdesc *tdp, struct node *np);
37 static void switch_on_type(struct mlist *mlp, struct tdesc *tdp,
40 static void print_intrinsic(struct mlist *mlp, struct tdesc *tdp,
42 static void print_forward(struct mlist *mlp, struct tdesc *tdp,
44 static void print_pointer(struct mlist *mlp, struct tdesc *tdp,
46 static void print_array(struct mlist *mlp, struct tdesc *tdp,
48 static void print_function(struct mlist *mlp, struct tdesc *tdp,
50 static void print_union(struct mlist *mlp, struct tdesc *tdp,
52 static void print_enum(struct mlist *mlp, struct tdesc *tdp,
54 static void print_forward(struct mlist *mlp, struct tdesc *tdp,
56 static void print_typeof(struct mlist *mlp, struct tdesc *tdp,
58 static void print_struct(struct mlist *mlp, struct tdesc *tdp,
60 static void print_volatile(struct mlist *mlp, struct tdesc *tdp,
64 forth_do_intrinsic(struct tdesc *tdp, struct node *np) in forth_do_intrinsic()
69 forth_do_sou(struct tdesc *tdp, struct node *np) in forth_do_sou()
108 forth_do_enum(struct tdesc *tdp, struct node *np) in forth_do_enum()
122 switch_on_type(struct mlist *mlp, struct tdesc *tdp, char *format, int level) in switch_on_type()
163 print_forward(struct mlist *mlp, struct tdesc *tdp, char *format, int level) in print_forward()
170 print_typeof(struct mlist *mlp, struct tdesc *tdp, char *format, int level) in print_typeof()
172 switch_on_type(mlp, tdp->data.tdesc, format, level); in print_typeof()
176 print_volatile(struct mlist *mlp, struct tdesc *tdp, char *format, int level) in print_volatile()
178 switch_on_type(mlp, tdp->data.tdesc, format, level); in print_volatile()
182 print_intrinsic(struct mlist *mlp, struct tdesc *tdp, char *format, int level) in print_intrinsic()
236 print_pointer(struct mlist *mlp, struct tdesc *tdp, char *format, int level) in print_pointer()
261 print_array(struct mlist *mlp, struct tdesc *tdp, char *format, int level) in print_array()
279 print_function(struct mlist *mlp, struct tdesc *tdp, char *format, int level) in print_function()
286 print_struct(struct mlist *mlp, struct tdesc *tdp, char *format, int level) in print_struct()
298 print_union(struct mlist *mlp, struct tdesc *tdp, char *format, int level) in print_union()
310 print_enum(struct mlist *mlp, struct tdesc *tdp, char *format, int level) in print_enum()