Home
last modified time | relevance | path

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

/u-boot/common/
A Dupdate.c241 int images_noffset, ndepth, noffset; in update_tftp() local
298 ndepth = 0; in update_tftp()
299 noffset = fdt_next_node(fit, images_noffset, &ndepth); in update_tftp()
300 while (noffset >= 0 && ndepth > 0) { in update_tftp()
301 if (ndepth != 1) in update_tftp()
338 noffset = fdt_next_node(fit, noffset, &ndepth); in update_tftp()
360 int images_noffset, ndepth, noffset; in fit_update() local
374 ndepth = 0; in fit_update()
376 while (noffset >= 0 && ndepth > 0) { in fit_update()
377 if (ndepth != 1) in fit_update()
[all …]
A Dimage-fit.c152 int ndepth; in fit_get_subimage_count() local
160 if (ndepth == 1) { in fit_get_subimage_count()
288 int ndepth; in fit_conf_print() local
343 for (ndepth = 0, noffset = fdt_next_node(fit, noffset, &ndepth); in fit_conf_print()
346 if (ndepth == 1) { in fit_conf_print()
372 int ndepth; in fit_print_contents() local
411 if (ndepth == 1) { in fit_print_contents()
477 int ndepth; in fit_image_print() local
1416 int ndepth; in fit_all_image_verify() local
1712 int ndepth = 0; in fit_conf_find_compat() local
[all …]
A Dfdt_support.c758 int off, ndepth; in fdt_del_subnodes() local
761 for (ndepth = 0, off = fdt_next_node(blob, parent_offset, &ndepth); in fdt_del_subnodes()
762 (off >= 0) && (ndepth > 0); in fdt_del_subnodes()
763 off = fdt_next_node(blob, off, &ndepth)) { in fdt_del_subnodes()
764 if (ndepth == 1) { in fdt_del_subnodes()
773 ndepth = 0; in fdt_del_subnodes()
784 int ndepth = 0; in fdt_del_partitions() local
788 off = fdt_next_node(blob, parent_offset, &ndepth); in fdt_del_partitions()
789 if (off > 0 && ndepth == 1) { in fdt_del_partitions()
814 int off, ndepth = 0; in fdt_node_set_part_info() local
[all …]
/u-boot/common/spl/
A Dspl_atf.c214 int parent, node, ndepth = 0; in spl_fit_images_find() local
224 for (node = fdt_next_node(blob, parent, &ndepth); in spl_fit_images_find()
225 (node >= 0) && (ndepth > 0); in spl_fit_images_find()
226 node = fdt_next_node(blob, node, &ndepth)) { in spl_fit_images_find()
227 if (ndepth != 1) in spl_fit_images_find()
/u-boot/lib/rsa/
A Drsa-verify.c503 int ndepth, noffset; in rsa_verify_hash() local
528 for (ndepth = 0, noffset = fdt_next_node(blob, sig_node, in rsa_verify_hash()
529 &ndepth); in rsa_verify_hash()
530 (noffset >= 0) && (ndepth > 0); in rsa_verify_hash()
531 noffset = fdt_next_node(blob, noffset, &ndepth)) { in rsa_verify_hash()
532 if (ndepth == 1 && noffset != node) { in rsa_verify_hash()
/u-boot/tools/
A Dfit_image.c878 int ndepth; in fit_extract_contents() local
907 for (ndepth = 0, count = 0, in fit_extract_contents()
908 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_extract_contents()
909 (noffset >= 0) && (ndepth > 0); in fit_extract_contents()
910 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_extract_contents()
911 if (ndepth == 1) { in fit_extract_contents()

Completed in 16 milliseconds