Searched refs:ndepth (Results 1 – 5 of 5) sorted by relevance
| /rk3399_rockchip-uboot/common/ |
| H A 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()
|
| H A D | image-fit.c | 138 int ndepth; in fit_get_subimage_count() local 142 for (ndepth = 0, count = 0, in fit_get_subimage_count() 143 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_get_subimage_count() 144 (noffset >= 0) && (ndepth > 0); in fit_get_subimage_count() 145 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_get_subimage_count() 146 if (ndepth == 1) { in fit_get_subimage_count() 174 int ndepth; in fit_print_contents() local 209 for (ndepth = 0, count = 0, in fit_print_contents() 210 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_print_contents() 211 (noffset >= 0) && (ndepth > 0); in fit_print_contents() [all …]
|
| H A D | fdt_support.c | 845 int off, ndepth; in fdt_del_subnodes() local 848 for (ndepth = 0, off = fdt_next_node(blob, parent_offset, &ndepth); in fdt_del_subnodes() 849 (off >= 0) && (ndepth > 0); in fdt_del_subnodes() 850 off = fdt_next_node(blob, off, &ndepth)) { in fdt_del_subnodes() 851 if (ndepth == 1) { in fdt_del_subnodes() 860 ndepth = 0; in fdt_del_subnodes() 871 int ndepth = 0; in fdt_del_partitions() local 875 off = fdt_next_node(blob, parent_offset, &ndepth); in fdt_del_partitions() 876 if (off > 0 && ndepth == 1) { in fdt_del_partitions() 902 int off, ndepth = 0; in fdt_node_set_part_info() local [all …]
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | fit_image.c | 820 int ndepth; in fit_extract_contents() local 849 for (ndepth = 0, count = 0, in fit_extract_contents() 850 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_extract_contents() 851 (noffset >= 0) && (ndepth > 0); in fit_extract_contents() 852 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_extract_contents() 853 if (ndepth == 1) { in fit_extract_contents()
|
| /rk3399_rockchip-uboot/lib/rsa/ |
| H A D | rsa-verify.c | 547 int ndepth, noffset; in rsa_verify() local 593 for (ndepth = 0, noffset = fdt_next_node(info->fit, sig_node, &ndepth); in rsa_verify() 594 (noffset >= 0) && (ndepth > 0); in rsa_verify() 595 noffset = fdt_next_node(info->fit, noffset, &ndepth)) { in rsa_verify() 596 if (ndepth == 1 && noffset != node) { in rsa_verify()
|