Home | History | Annotate | Download | only in tests

Lines Matching defs:nodeoffset

74 	int nodeoffset, supernodeoffset, superpathoffset, pathprefixlen;
85 nodeoffset = fdt_path_offset(fdt, path);
86 if (nodeoffset < 0)
87 FAIL("fdt_path_offset(%s): %s", path, fdt_strerror(nodeoffset));
93 supernodeoffset = fdt_supernode_atdepth_offset(fdt, nodeoffset,
111 int nodeoffset, err;
113 nodeoffset = fdt_path_offset(fdt, path);
114 if (nodeoffset < 0)
115 FAIL("fdt_path_offset(%s): %s", path, fdt_strerror(nodeoffset));
117 err = fdt_supernode_atdepth_offset(fdt, nodeoffset, pdepth + 1, NULL);