Home
last modified time | relevance | path

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

/external/u-boot/common/
Dimage-fit.c129 int ndepth; in fit_get_subimage_count() local
133 for (ndepth = 0, count = 0, in fit_get_subimage_count()
134 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_get_subimage_count()
135 (noffset >= 0) && (ndepth > 0); in fit_get_subimage_count()
136 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_get_subimage_count()
137 if (ndepth == 1) { in fit_get_subimage_count()
260 int ndepth; in fit_conf_print() local
315 for (ndepth = 0, noffset = fdt_next_node(fit, noffset, &ndepth); in fit_conf_print()
316 (noffset >= 0) && (ndepth > 0); in fit_conf_print()
317 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_conf_print()
[all …]
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()
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 …]
/external/u-boot/common/spl/
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()
/external/u-boot/lib/rsa/
Drsa-verify.c198 int ndepth, noffset; in rsa_verify() local
244 for (ndepth = 0, noffset = fdt_next_node(info->fit, sig_node, &ndepth); in rsa_verify()
245 (noffset >= 0) && (ndepth > 0); in rsa_verify()
246 noffset = fdt_next_node(info->fit, noffset, &ndepth)) { in rsa_verify()
247 if (ndepth == 1 && noffset != node) { in rsa_verify()
/external/u-boot/tools/
Dfit_image.c751 int ndepth; in fit_extract_contents() local
780 for (ndepth = 0, count = 0, in fit_extract_contents()
781 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_extract_contents()
782 (noffset >= 0) && (ndepth > 0); in fit_extract_contents()
783 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_extract_contents()
784 if (ndepth == 1) { in fit_extract_contents()