Searched refs:nextoffset (Results 1 – 5 of 5) sorted by relevance
| /scripts/dtc/libfdt/ |
| A D | fdt.c | 161 *nextoffset = -FDT_ERR_TRUNCATED; in fdt_next_tag() 168 *nextoffset = -FDT_ERR_BADSTRUCTURE; in fdt_next_tag() 205 *nextoffset = FDT_TAGALIGN(offset); in fdt_next_tag() 229 int nextoffset = 0; in fdt_next_node() local 234 return nextoffset; in fdt_next_node() 237 offset = nextoffset; in fdt_next_node() 238 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node() 252 return nextoffset; in fdt_next_node() 256 if ((nextoffset >= 0) in fdt_next_node() 257 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth)) in fdt_next_node() [all …]
|
| A D | fdt_rw.c | 207 int nextoffset; in fdt_add_property_() local 212 if ((nextoffset = fdt_check_node_offset_(fdt, nodeoffset)) < 0) in fdt_add_property_() 213 return nextoffset; in fdt_add_property_() 219 *prop = fdt_offset_ptr_w_(fdt, nextoffset); in fdt_add_property_() 338 int offset, nextoffset; in fdt_add_subnode_namelen() local 353 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */ in fdt_add_subnode_namelen() 355 offset = nextoffset; in fdt_add_subnode_namelen() 356 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_add_subnode_namelen()
|
| A D | fdt_sw.c | 345 int offset, nextoffset; in fdt_finish() local 363 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) { in fdt_finish() 373 offset = nextoffset; in fdt_finish() 375 if (nextoffset < 0) in fdt_finish() 376 return nextoffset; in fdt_finish()
|
| A D | fdt_ro.c | 204 int nextoffset; in nextprop_() local 207 tag = fdt_next_tag(fdt, offset, &nextoffset); in nextprop_() 211 if (nextoffset >= 0) in nextprop_() 214 return nextoffset; in nextprop_() 219 offset = nextoffset; in nextprop_() 863 int offset, nextoffset = 0; in fdt_check_full() local 883 offset = nextoffset; in fdt_check_full() 884 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_check_full() 886 if (nextoffset < 0) in fdt_check_full() 887 return nextoffset; in fdt_check_full()
|
| A D | libfdt.h | 118 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
|
Completed in 15 milliseconds