Lines Matching refs:ndepth
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()
212 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_print_contents()
213 if (ndepth == 1) { in fit_print_contents()
239 for (ndepth = 0, count = 0, in fit_print_contents()
240 noffset = fdt_next_node(fit, confs_noffset, &ndepth); in fit_print_contents()
241 (noffset >= 0) && (ndepth > 0); in fit_print_contents()
242 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_print_contents()
243 if (ndepth == 1) { in fit_print_contents()
375 int ndepth; in fit_image_print() local
461 for (ndepth = 0, noffset = fdt_next_node(fit, image_noffset, &ndepth); in fit_image_print()
462 (noffset >= 0) && (ndepth > 0); in fit_image_print()
463 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_image_print()
464 if (ndepth == 1) { in fit_image_print()
1519 int ndepth; in fit_all_image_verify() local
1533 for (ndepth = 0, count = 0, in fit_all_image_verify()
1534 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_all_image_verify()
1535 (noffset >= 0) && (ndepth > 0); in fit_all_image_verify()
1536 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_all_image_verify()
1537 if (ndepth == 1) { in fit_all_image_verify()
1830 int ndepth = 0; in fit_conf_find_compat() local
1853 for (noffset = fdt_next_node(fit, confs_noffset, &ndepth); in fit_conf_find_compat()
1854 (noffset >= 0) && (ndepth > 0); in fit_conf_find_compat()
1855 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_conf_find_compat()
1864 if (ndepth > 1) in fit_conf_find_compat()