Searched refs:nextoffset (Results 1 - 10 of 10) sorted by relevance

/u-boot/scripts/dtc/libfdt/
H A Dfdt.c154 uint32_t fdt_next_tag(const void *fdt, int startoffset, int *nextoffset) argument
161 *nextoffset = -FDT_ERR_TRUNCATED;
168 *nextoffset = -FDT_ERR_BADSTRUCTURE;
205 *nextoffset = FDT_TAGALIGN(offset);
229 int nextoffset = 0; local
233 if ((nextoffset = fdt_check_node_offset_(fdt, offset)) < 0)
234 return nextoffset;
237 offset = nextoffset;
238 tag = fdt_next_tag(fdt, offset, &nextoffset);
252 return nextoffset;
[all...]
H A Dfdt_rw.c207 int nextoffset; local
212 if ((nextoffset = fdt_check_node_offset_(fdt, nodeoffset)) < 0)
213 return nextoffset;
219 *prop = fdt_offset_ptr_w_(fdt, nextoffset);
338 int offset, nextoffset; local
353 fdt_next_tag(fdt, parentoffset, &nextoffset); /* skip the BEGIN_NODE */
355 offset = nextoffset;
356 tag = fdt_next_tag(fdt, offset, &nextoffset);
H A Dfdt_ro.c204 int nextoffset; local
207 tag = fdt_next_tag(fdt, offset, &nextoffset);
211 if (nextoffset >= 0)
214 return nextoffset;
219 offset = nextoffset;
865 int offset, nextoffset = 0; local
885 offset = nextoffset;
886 tag = fdt_next_tag(fdt, offset, &nextoffset);
888 if (nextoffset < 0)
889 return nextoffset;
[all...]
H A Dfdt_sw.c345 int offset, nextoffset; local
363 while ((tag = fdt_next_tag(fdt, offset, &nextoffset)) != FDT_END) {
373 offset = nextoffset;
375 if (nextoffset < 0)
376 return nextoffset;
H A Dlibfdt.h118 uint32_t fdt_next_tag(const void *fdt, int offset, int *nextoffset);
/u-boot/boot/
H A Dfdt_region.c39 int nextoffset = 0; local
59 offset = nextoffset;
60 tag = fdt_next_tag(fdt, offset, &nextoffset);
61 stop_at = nextoffset;
149 if (nextoffset != fdt_size_dt_struct(fdt))
155 region[count].size = nextoffset - start;
380 p->nextoffset = 0;
398 * (p.nextoffset) to see if that should be included or not. When it
515 offset = p.nextoffset;
516 tag = fdt_next_tag(fdt, offset, &p.nextoffset);
[all...]
/u-boot/fs/cramfs/
H A Dcramfs.c120 unsigned long inodeoffset = 0, nextoffset; local
138 nextoffset =
198 inodeoffset = nextoffset;
297 unsigned long inodeoffset = 0, nextoffset; local
334 nextoffset = cramfs_list_inode (info, offset + inodeoffset);
335 if (nextoffset == 0)
337 inodeoffset += sizeof (struct cramfs_inode) + nextoffset;
/u-boot/include/
H A Dfdt_region.h68 int nextoffset; /* Next node offset to check */ member in struct:fdt_region_ptrs
/u-boot/cmd/
H A Dfdt.c1005 int nextoffset; /* next node offset from libfdt */ local
1047 tag = fdt_next_tag(working_fdt, nodeoffset, &nextoffset);
1110 nodeoffset = nextoffset;
/u-boot/tools/
H A Dfdtgrep.c241 int offset, nextoffset; local
297 nextoffset = 0;
305 offset = nextoffset;
316 tag = fdt_next_tag(blob, offset, &nextoffset);

Completed in 211 milliseconds