Searched refs:nextoffset (Results 1 – 10 of 10) sorted by relevance
/u-boot-v2022.01-rc1/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_() 865 int offset, nextoffset = 0; in fdt_check_full() local 885 offset = nextoffset; in fdt_check_full() 886 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_check_full() 888 if (nextoffset < 0) in fdt_check_full() 889 return nextoffset; in fdt_check_full()
|
A D | libfdt.h | 118 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
|
/u-boot-v2022.01-rc1/common/ |
A D | fdt_region.c | 39 int nextoffset = 0; in fdt_find_regions() local 59 offset = nextoffset; in fdt_find_regions() 60 tag = fdt_next_tag(fdt, offset, &nextoffset); in fdt_find_regions() 61 stop_at = nextoffset; in fdt_find_regions() 149 if (nextoffset != fdt_size_dt_struct(fdt)) in fdt_find_regions() 155 region[count].size = nextoffset - start; in fdt_find_regions() 371 p->nextoffset = 0; in fdt_first_region() 506 offset = p.nextoffset; in fdt_next_region() 508 stop_at = p.nextoffset; in fdt_next_region() 653 info->ptrs.nextoffset - info->start)) in fdt_next_region() [all …]
|
/u-boot-v2022.01-rc1/fs/cramfs/ |
A D | cramfs.c | 121 unsigned long inodeoffset = 0, nextoffset; in cramfs_resolve() local 139 nextoffset = in cramfs_resolve() 201 inodeoffset = nextoffset; in cramfs_resolve() 300 unsigned long inodeoffset = 0, nextoffset; in cramfs_ls() local 337 nextoffset = cramfs_list_inode (info, offset + inodeoffset); in cramfs_ls() 338 if (nextoffset == 0) in cramfs_ls() 340 inodeoffset += sizeof (struct cramfs_inode) + nextoffset; in cramfs_ls()
|
/u-boot-v2022.01-rc1/include/ |
A D | fdt_region.h | 68 int nextoffset; /* Next node offset to check */ member
|
/u-boot-v2022.01-rc1/tools/ |
A D | fdtgrep.c | 240 int offset, nextoffset; in display_fdt_by_regions() local 296 nextoffset = 0; in display_fdt_by_regions() 304 offset = nextoffset; in display_fdt_by_regions() 315 tag = fdt_next_tag(blob, offset, &nextoffset); in display_fdt_by_regions()
|
/u-boot-v2022.01-rc1/cmd/ |
A D | fdt.c | 945 int nextoffset; /* next node offset from libfdt */ in fdt_print() local 987 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset); in fdt_print() 1050 nodeoffset = nextoffset; in fdt_print()
|
Completed in 36 milliseconds