Searched refs:depth (Results 1 – 11 of 11) sorted by relevance
/scripts/dtc/libfdt/ |
A D | fdt.c | 266 if (depth) in fdt_next_node() 267 (*depth)++; in fdt_next_node() 271 if (depth && ((--(*depth)) < 0)) in fdt_next_node() 277 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth)) in fdt_next_node() 289 int depth = 0; in fdt_first_subnode() local 291 offset = fdt_next_node(fdt, offset, &depth); in fdt_first_subnode() 292 if (offset < 0 || depth != 1) in fdt_first_subnode() 300 int depth = 1; in fdt_next_subnode() local 307 offset = fdt_next_node(fdt, offset, &depth); in fdt_next_subnode() 308 if (offset < 0 || depth < 1) in fdt_next_subnode() [all …]
|
A D | fdt_ro.c | 228 int depth; in fdt_subnode_offset_namelen() local 232 for (depth = 0; in fdt_subnode_offset_namelen() 235 if ((depth == 1) in fdt_subnode_offset_namelen() 239 if (depth < 0) in fdt_subnode_offset_namelen() 574 int offset, depth, namelen; in fdt_get_path() local 582 for (offset = 0, depth = 0; in fdt_get_path() 585 while (pdepth > depth) { in fdt_get_path() 592 if (pdepth >= depth) { in fdt_get_path() 605 if (pdepth < (depth + 1)) in fdt_get_path() 626 int offset, depth; in fdt_supernode_atdepth_offset() local [all …]
|
A D | fdt_wip.c | 75 int depth = 0; in fdt_node_end_offset_() local 77 while ((offset >= 0) && (depth >= 0)) in fdt_node_end_offset_() 78 offset = fdt_next_node(fdt, offset, &depth); in fdt_node_end_offset_()
|
A D | libfdt.h | 193 int fdt_next_node(const void *fdt, int offset, int *depth);
|
/scripts/ |
A D | Makefile.kstack_erase | 12 kstack-erase-cflags-y += -fsanitize-coverage=stack-depth 13 kstack-erase-cflags-y += -fsanitize-coverage-stack-depth-callback-min=$(CONFIG_KSTACK_ERASE_TRACK_M… 14 DISABLE_KSTACK_ERASE := -fno-sanitize-coverage=stack-depth
|
A D | unifdef.c | 510 if (depth == 0) in ignoreoff() 512 ignoring[depth] = ignoring[depth-1]; in ignoreoff() 517 ignoring[depth] = true; in ignoreon() 529 if (depth > MAXDEPTH-1) in nest() 533 depth += 1; in nest() 539 if (depth == 0) in unnest() 541 depth -= 1; in unnest() 546 ifstate[depth] = is; in state() 594 ifstate_name[ifstate[depth]], depth); in process() 1218 if (depth == 0) in error() [all …]
|
A D | spdxcheck.py | 393 args.depth) 399 scan_git_tree(repo.head.commit.tree, '.', args.depth)
|
/scripts/gdb/linux/ |
A D | proc.py | 58 def get_resources(resource, depth): argument 60 yield resource, depth 64 for res, deep in get_resources(child, depth + 1): 74 for res, depth in get_resources(resource['child'], 0): 77 gdb.write(" " * depth * 2 +
|
A D | mapletree.py | 74 self.depth = 0 77 self.depth = 0
|
/scripts/dtc/ |
A D | fdtget.c | 142 int depth = 1; /* the assumed depth of this node */ in list_subnodes() local 149 if (level <= depth) { in list_subnodes() 173 if (level <= depth) in list_subnodes()
|
A D | livetree.c | 1000 int i, depth; in add_local_fixup_entry() local 1003 depth = 0; in add_local_fixup_entry() 1005 depth++; in add_local_fixup_entry() 1008 compp = xmalloc(sizeof(*compp) * depth); in add_local_fixup_entry() 1011 for (wn = node, i = depth - 1; wn; wn = wn->parent, i--) in add_local_fixup_entry() 1015 for (wn = lfn, i = 1; i < depth; i++, wn = nwn) { in add_local_fixup_entry()
|
Completed in 19 milliseconds