Home | History | Annotate | Download | only in libfdt

Lines Matching defs:depth

161 	int depth;
165 for (depth = 0;
166 (offset >= 0) && (depth >= 0);
167 offset = fdt_next_node(fdt, offset, &depth))
168 if ((depth == 1)
172 if (depth < 0)
392 int offset, depth, namelen;
400 for (offset = 0, depth = 0;
402 offset = fdt_next_node(fdt, offset, &depth)) {
403 while (pdepth > depth) {
410 if (pdepth >= depth) {
423 if (pdepth < (depth + 1))
444 int offset, depth;
452 for (offset = 0, depth = 0;
454 offset = fdt_next_node(fdt, offset, &depth)) {
455 if (depth == supernodedepth)
460 *nodedepth = depth;
462 if (supernodedepth > depth)