Lines Matching refs:m
325 struct marker *m = prop->val.markers; in check_duplicate_label_prop() local
331 for_each_marker_of_type(m, LABEL) in check_duplicate_label_prop()
332 check_duplicate_label(c, dt, m->ref, node, prop, m); in check_duplicate_label_prop()
340 struct marker *m; in check_explicit_phandles() local
354 m = prop->val.markers; in check_explicit_phandles()
355 for_each_marker_of_type(m, REF_PHANDLE) { in check_explicit_phandles()
356 assert(m->offset == 0); in check_explicit_phandles()
357 if (node != get_node_by_ref(root, m->ref)) in check_explicit_phandles()
433 struct marker *m = prop->val.markers; in fixup_phandle_references() local
437 for_each_marker_of_type(m, REF_PHANDLE) { in fixup_phandle_references()
438 assert(m->offset + sizeof(cell_t) <= prop->val.len); in fixup_phandle_references()
440 refnode = get_node_by_ref(dt, m->ref); in fixup_phandle_references()
443 m->ref); in fixup_phandle_references()
448 *((cell_t *)(prop->val.val + m->offset)) = cpu_to_fdt32(phandle); in fixup_phandle_references()
457 struct marker *m = prop->val.markers; in fixup_path_references() local
461 for_each_marker_of_type(m, REF_PATH) { in fixup_path_references()
462 assert(m->offset <= prop->val.len); in fixup_path_references()
464 refnode = get_node_by_ref(dt, m->ref); in fixup_path_references()
467 m->ref); in fixup_path_references()
472 prop->val = data_insert_at_marker(prop->val, m, path, in fixup_path_references()