Lines Matching refs:ml
62 mlist_t *ml; in fix_ptrptr_to_struct() local
69 for (ml = str->t_members; ml; ml = ml->ml_next) { in fix_ptrptr_to_struct()
70 if (streq(ml->ml_name, mems[i])) in fix_ptrptr_to_struct()
73 if (!ml) in fix_ptrptr_to_struct()
76 if (ml->ml_type->t_type != POINTER || ml->ml_type->t_name || in fix_ptrptr_to_struct()
77 ml->ml_type->t_tdesc->t_type != POINTER || in fix_ptrptr_to_struct()
78 ml->ml_type->t_tdesc->t_name) in fix_ptrptr_to_struct()
81 act = ml->ml_type->t_tdesc->t_tdesc; in fix_ptrptr_to_struct()
99 ml->ml_type = p1; in fix_ptrptr_to_struct()
113 mlist_t *ml; in fix_ptr_to_struct() local
123 for (ml = str->t_members; ml; ml = ml->ml_next) { in fix_ptr_to_struct()
124 if (mems[i] && !streq(ml->ml_name, mems[i])) in fix_ptr_to_struct()
127 if (ml->ml_type->t_type != POINTER || in fix_ptr_to_struct()
128 ml->ml_type->t_name || in fix_ptr_to_struct()
129 (ml->ml_type->t_tdesc->t_type != STRUCT && in fix_ptr_to_struct()
130 ml->ml_type->t_tdesc->t_type != FORWARD) || in fix_ptr_to_struct()
131 !streq(ml->ml_type->t_tdesc->t_name, "vmem")) in fix_ptr_to_struct()
135 strs[i], ml->ml_name); in fix_ptr_to_struct()
144 ml->ml_type = ptr; in fix_ptr_to_struct()
202 mlist_t *ml, *lml; in fix_small_cpu_struct() local
226 for (ml = cpu->t_members, lml = NULL; ml; in fix_small_cpu_struct()
227 lml = ml, ml = ml->ml_next) { in fix_small_cpu_struct()
228 if (strcmp(ml->ml_name, "cpu_cyclic") == 0) in fix_small_cpu_struct()