Searched refs:nextoffset (Results 1 – 7 of 7) sorted by relevance
| /linux/scripts/dtc/libfdt/ |
| A D | fdt.c | 172 *nextoffset = -FDT_ERR_TRUNCATED; in fdt_next_tag() 179 *nextoffset = -FDT_ERR_BADSTRUCTURE; in fdt_next_tag() 215 *nextoffset = FDT_TAGALIGN(offset); in fdt_next_tag() 245 int nextoffset = 0; in fdt_next_node() local 250 return nextoffset; in fdt_next_node() 253 offset = nextoffset; in fdt_next_node() 254 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_next_node() 268 return nextoffset; in fdt_next_node() 272 if ((nextoffset >= 0) in fdt_next_node() 273 || ((nextoffset == -FDT_ERR_TRUNCATED) && !depth)) in fdt_next_node() [all …]
|
| A D | fdt_rw.c | 206 int nextoffset; in fdt_add_property_() local 211 if ((nextoffset = fdt_check_node_offset_(fdt, nodeoffset)) < 0) in fdt_add_property_() 212 return nextoffset; in fdt_add_property_() 218 *prop = fdt_offset_ptr_w_(fdt, nextoffset); in fdt_add_property_() 337 int offset, nextoffset; in fdt_add_subnode_namelen() local 352 tag = fdt_next_tag(fdt, parentoffset, &nextoffset); in fdt_add_subnode_namelen() 357 offset = nextoffset; in fdt_add_subnode_namelen() 358 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_add_subnode_namelen()
|
| A D | fdt_sw.c | 343 int offset, nextoffset; in fdt_finish() local 361 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) { in fdt_finish() 371 offset = nextoffset; in fdt_finish() 373 if (nextoffset < 0) in fdt_finish() 374 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_()
|
| A D | libfdt.h | 127 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
|
| /linux/scripts/dtc/ |
| A D | fdtget.c | 138 int nextoffset; /* next node offset from libfdt */ in list_subnodes() local 145 tag = fdt_next_tag(blob, node, &nextoffset); in list_subnodes() 177 node = nextoffset; in list_subnodes()
|
| /linux/fs/cramfs/ |
| A D | inode.c | 720 unsigned long nextoffset; in cramfs_readdir() local 740 nextoffset = offset + sizeof(*de) + namelen; in cramfs_readdir() 753 ctx->pos = offset = nextoffset; in cramfs_readdir()
|
Completed in 19 milliseconds