Searched refs:ndepth (Results 1 – 6 of 6) sorted by relevance
/external/u-boot/common/ |
D | image-fit.c | 129 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 …]
|
D | update.c | 235 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()
|
D | fdt_support.c | 734 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/ |
D | spl_atf.c | 104 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/ |
D | rsa-verify.c | 198 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/ |
D | fit_image.c | 751 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()
|