Home
last modified time | relevance | path

Searched refs:ndepth (Results 1 – 6 of 6) sorted by relevance

/openbmc/u-boot/common/
H A Dimage-fit.c130 int ndepth; in fit_get_subimage_count() local
134 for (ndepth = 0, count = 0, in fit_get_subimage_count()
135 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_get_subimage_count()
136 (noffset >= 0) && (ndepth > 0); in fit_get_subimage_count()
137 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_get_subimage_count()
138 if (ndepth == 1) { in fit_get_subimage_count()
266 int ndepth; in fit_conf_print() local
321 for (ndepth = 0, noffset = fdt_next_node(fit, noffset, &ndepth); in fit_conf_print()
322 (noffset >= 0) && (ndepth > 0); in fit_conf_print()
323 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_conf_print()
[all …]
H A Dupdate.c235 int images_noffset, ndepth, noffset; in update_tftp() local
292 ndepth = 0; in update_tftp()
293 noffset = fdt_next_node(fit, images_noffset, &ndepth); in update_tftp()
294 while (noffset >= 0 && ndepth > 0) { in update_tftp()
295 if (ndepth != 1) in update_tftp()
331 noffset = fdt_next_node(fit, noffset, &ndepth); in update_tftp()
H A Dfdt_support.c734 int off, ndepth; in fdt_del_subnodes() local
737 for (ndepth = 0, off = fdt_next_node(blob, parent_offset, &ndepth); in fdt_del_subnodes()
738 (off >= 0) && (ndepth > 0); in fdt_del_subnodes()
739 off = fdt_next_node(blob, off, &ndepth)) { in fdt_del_subnodes()
740 if (ndepth == 1) { in fdt_del_subnodes()
749 ndepth = 0; in fdt_del_subnodes()
760 int ndepth = 0; in fdt_del_partitions() local
764 off = fdt_next_node(blob, parent_offset, &ndepth); in fdt_del_partitions()
765 if (off > 0 && ndepth == 1) { in fdt_del_partitions()
791 int off, ndepth = 0; in fdt_node_set_part_info() local
[all …]
/openbmc/u-boot/common/spl/
H A Dspl_atf.c104 int parent, node, ndepth; in spl_fit_images_find_uboot() local
114 for (node = fdt_next_node(blob, parent, &ndepth); in spl_fit_images_find_uboot()
115 (node >= 0) && (ndepth > 0); in spl_fit_images_find_uboot()
116 node = fdt_next_node(blob, node, &ndepth)) { in spl_fit_images_find_uboot()
117 if (ndepth != 1) in spl_fit_images_find_uboot()
/openbmc/u-boot/lib/rsa/
H A Drsa-verify.c406 int ndepth, noffset; in rsa_verify() local
452 for (ndepth = 0, noffset = fdt_next_node(info->fit, sig_node, &ndepth); in rsa_verify()
453 (noffset >= 0) && (ndepth > 0); in rsa_verify()
454 noffset = fdt_next_node(info->fit, noffset, &ndepth)) { in rsa_verify()
455 if (ndepth == 1 && noffset != node) { in rsa_verify()
/openbmc/u-boot/tools/
H A Dfit_image.c759 int ndepth; in fit_extract_contents() local
788 for (ndepth = 0, count = 0, in fit_extract_contents()
789 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_extract_contents()
790 (noffset >= 0) && (ndepth > 0); in fit_extract_contents()
791 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_extract_contents()
792 if (ndepth == 1) { in fit_extract_contents()