Lines Matching refs:ndepth
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()
318 if (ndepth == 1) { in fit_conf_print()
344 int ndepth; in fit_print_contents() local
379 for (ndepth = 0, count = 0, in fit_print_contents()
380 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_print_contents()
381 (noffset >= 0) && (ndepth > 0); in fit_print_contents()
382 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_print_contents()
383 if (ndepth == 1) { in fit_print_contents()
409 for (ndepth = 0, count = 0, in fit_print_contents()
410 noffset = fdt_next_node(fit, confs_noffset, &ndepth); in fit_print_contents()
411 (noffset >= 0) && (ndepth > 0); in fit_print_contents()
412 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_print_contents()
413 if (ndepth == 1) { in fit_print_contents()
449 int ndepth; in fit_image_print() local
536 for (ndepth = 0, noffset = fdt_next_node(fit, image_noffset, &ndepth); in fit_image_print()
537 (noffset >= 0) && (ndepth > 0); in fit_image_print()
538 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_image_print()
539 if (ndepth == 1) { in fit_image_print()
1315 int ndepth; in fit_all_image_verify() local
1329 for (ndepth = 0, count = 0, in fit_all_image_verify()
1330 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_all_image_verify()
1331 (noffset >= 0) && (ndepth > 0); in fit_all_image_verify()
1332 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_all_image_verify()
1333 if (ndepth == 1) { in fit_all_image_verify()
1525 int ndepth = 0; in fit_conf_find_compat() local
1548 for (noffset = fdt_next_node(fit, confs_noffset, &ndepth); in fit_conf_find_compat()
1549 (noffset >= 0) && (ndepth > 0); in fit_conf_find_compat()
1550 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_conf_find_compat()
1559 if (ndepth > 1) in fit_conf_find_compat()