Lines Matching refs:ndepth

135 	int ndepth;  in fit_get_subimage_count()  local
139 for (ndepth = 0, count = 0, in fit_get_subimage_count()
140 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_get_subimage_count()
141 (noffset >= 0) && (ndepth > 0); in fit_get_subimage_count()
142 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_get_subimage_count()
143 if (ndepth == 1) { in fit_get_subimage_count()
171 int ndepth; in fit_print_contents() local
206 for (ndepth = 0, count = 0, in fit_print_contents()
207 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_print_contents()
208 (noffset >= 0) && (ndepth > 0); in fit_print_contents()
209 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_print_contents()
210 if (ndepth == 1) { in fit_print_contents()
236 for (ndepth = 0, count = 0, in fit_print_contents()
237 noffset = fdt_next_node(fit, confs_noffset, &ndepth); in fit_print_contents()
238 (noffset >= 0) && (ndepth > 0); in fit_print_contents()
239 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_print_contents()
240 if (ndepth == 1) { in fit_print_contents()
372 int ndepth; in fit_image_print() local
458 for (ndepth = 0, noffset = fdt_next_node(fit, image_noffset, &ndepth); in fit_image_print()
459 (noffset >= 0) && (ndepth > 0); in fit_image_print()
460 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_image_print()
461 if (ndepth == 1) { in fit_image_print()
1471 int ndepth; in fit_all_image_verify() local
1485 for (ndepth = 0, count = 0, in fit_all_image_verify()
1486 noffset = fdt_next_node(fit, images_noffset, &ndepth); in fit_all_image_verify()
1487 (noffset >= 0) && (ndepth > 0); in fit_all_image_verify()
1488 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_all_image_verify()
1489 if (ndepth == 1) { in fit_all_image_verify()
1681 int ndepth = 0; in fit_conf_find_compat() local
1704 for (noffset = fdt_next_node(fit, confs_noffset, &ndepth); in fit_conf_find_compat()
1705 (noffset >= 0) && (ndepth > 0); in fit_conf_find_compat()
1706 noffset = fdt_next_node(fit, noffset, &ndepth)) { in fit_conf_find_compat()
1715 if (ndepth > 1) in fit_conf_find_compat()